From 2540126bc6af6b52caf5d06a8288197d523ade10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 28 Aug 2018 18:29:31 +0200 Subject: [PATCH] Cython wheels don't work with Python 2.6, use --no-cython-compile --- smoke/venv.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/smoke/venv.sh b/smoke/venv.sh index a557489..3527657 100755 --- a/smoke/venv.sh +++ b/smoke/venv.sh @@ -31,7 +31,8 @@ python -c 'import sys; print(sys.version)' | head -n1 | grep $VERSION # install packages with pip if [ "$VERSION" == "2.6" ]; then - pip install pytest "Cython<28" + pip install pytest + pip install Cython --install-option="--no-cython-compile" else python -m pip install pytest Cython fi