Commit 23a35d9c authored by Stefan Behnel's avatar Stefan Behnel

travis: disable dependency installation in "-dev" Python builds (currently...

travis: disable dependency installation in "-dev" Python builds (currently fails for Py3.7, and might fail again in the future).
parent 960b4427
......@@ -37,7 +37,7 @@ branches:
install:
- python -c 'import sys; print("Python %s" % (sys.version,))'
- python -c 'import sys; sys.exit("exclude Py2.6" and sys.version_info >= (2, 7))' || pip install -r test-requirements.txt
- [ -z "${TRAVIS_PYTHON_VERSION##*-dev}" ] || python -c 'import sys; sys.exit("exclude Py2.6" and sys.version_info >= (2, 7))' || pip install -r test-requirements.txt
- CFLAGS="-O2 -ggdb -Wall -Wextra $(python -c 'import sys; print("-fno-strict-aliasing" if sys.version_info[0] == 2 else "")')" python setup.py build
before_script: ccache -s
......
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