#14 Python 3.9: Fetch Cython master
Merged 4 years ago by churchyard. Opened 4 years ago by churchyard.
tests/ churchyard/python python39  into  master

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

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

  else

      python -m pip install pytest

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

+     if [ "$VERSION" == "3.9" ]; then

+         # Cython support for 3.9.0a1+ 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"

no initial comment

Looks good!
I tried merging but got Your task failed: Remote hook declined the push: A pull request is required for this branch Denied push for ref 'refs/heads/master' for user 'pviktori' All changes have been rejected. Is that expected?

Your task failed: Remote hook declined the push: A pull request is required for this branch Denied push for ref 'refs/heads/master' for user 'churchyard' All changes have been rejected

no it isn't.

Pull-Request has been merged by churchyard

4 years ago