From d72c62fe79dab5e6489f4f1f16ed33a09d01f408 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Sun, 1 Sep 2019 09:03:39 +0200 Subject: [PATCH] It is no longer needed to fetch Cython from git master --- smoke/venv.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/smoke/venv.sh b/smoke/venv.sh index 17528b4..4281e5c 100755 --- a/smoke/venv.sh +++ b/smoke/venv.sh @@ -35,10 +35,7 @@ if [ "$VERSION" == "2.6" ]; then pip install Cython --install-option="--no-cython-compile" else python -m pip install pytest - if [ "$VERSION" == "3.8" ]; then - # Cython support for 3.8.0a4+ is not yet released - python -m pip install https://github.com/cython/cython/archive/master.tar.gz --install-option="--no-cython-compile" - elif [ "$PYTHON" != "jython" ]; then + if [ "$PYTHON" != "jython" ]; then # We try to fetch a wheel only and if that fails, we disable compilation # Useful for fresh CPythons, where wheels are not yet ready, but Cython defaults to compiling python -m pip install Cython --only-binary :all: || python -m pip install Cython --install-option="--no-cython-compile"