#8 Python 3.8: Install Cython from git master
Merged 5 years ago by churchyard. Opened 5 years ago by churchyard.
tests/ churchyard/python master_cython  into  master

file modified
+4 -1
@@ -35,7 +35,10 @@ 

      pip install Cython --install-option="--no-cython-compile"

  else

      python -m pip install pytest

-     if [ "$PYTHON" != "jython" ]; then

+     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

          # 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"

file modified
+1 -1
@@ -31,7 +31,7 @@ 

          run: VERSION=3.7 X="-x test_socket -x test_asyncgen -x test_asyncio -x test_compile -x test_concurrent_futures -x test_itertools -x test_multiprocessing_fork -x test_multiprocessing_forkserver -x test_shutil -x test_time -x test_multiprocessing_spawn -x test_threading -x test_wsgiref" ./findleaks.sh

      required_packages:

      - gcc

-     - /usr/bin/virtualenv

+     - virtualenv

      - python27

      - python36

      - python37