From 5169b862387116eeaec7442a48e936506800afb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 28 Aug 2018 13:48:52 +0200 Subject: [PATCH] On Python 2.6, get Cython 27.x with cp26 wheels --- smoke/venv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smoke/venv.sh b/smoke/venv.sh index 5b166dd..a557489 100755 --- a/smoke/venv.sh +++ b/smoke/venv.sh @@ -31,7 +31,7 @@ python -c 'import sys; print(sys.version)' | head -n1 | grep $VERSION # install packages with pip if [ "$VERSION" == "2.6" ]; then - pip install pytest Cython + pip install pytest "Cython<28" else python -m pip install pytest Cython fi