Commit 1da7a937 authored by Jérome Perrin's avatar Jérome Perrin Committed by Jérome Perrin

.travis.yml: pin setuptools to 49.6 on pypy3

setutools 50.0.0 does not seem compatible with the pypy3 used on travis.
parent c1e08052
...@@ -22,7 +22,9 @@ jobs: ...@@ -22,7 +22,9 @@ jobs:
install: install:
- pip install -U pip - pip install -U pip
- pip install -U setuptools zc.buildout # BBB use older setuptools on pypy, setuptools 50.0.0 is not compatible with pypy 7.1.1-beta0
- if [[ $TRAVIS_PYTHON_VERSION == pypy3* ]]; then pip install -U setuptools==49.6.0 zc.buildout; fi
- if [[ $TRAVIS_PYTHON_VERSION != pypy3* ]]; then pip install -U setuptools zc.buildout; fi
- buildout $BUILOUT_OPTIONS - buildout $BUILOUT_OPTIONS
script: script:
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then bin/coverage run bin/coverage-test -v; fi - if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then bin/coverage run bin/coverage-test -v; fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment