diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2017-09-23 10:24:58 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2017-09-23 10:24:58 -0600 |
commit | 120d3573181e9b702a140b89d417f6117b625fa9 (patch) | |
tree | f22f5ba9561ab5306d856740c2a7c12980794db2 /tools/travis-before-install.sh | |
parent | b1ea23bbbf1b370d4993e222a539368aabec4e9c (diff) | |
download | numpy-120d3573181e9b702a140b89d417f6117b625fa9.tar.gz |
BUG: Cython 0.27 breaks NumPy on Python 3.
The latest Cython came out and it causes the cythonized mtrand.c source
to issue a compile warning for Python 3, breaking NumPy travis tests. As
a temporary fix, force the tests to use Cython 0.26.
Diffstat (limited to 'tools/travis-before-install.sh')
-rwxr-xr-x | tools/travis-before-install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/travis-before-install.sh b/tools/travis-before-install.sh index 5e5278ce5..3203658d5 100755 --- a/tools/travis-before-install.sh +++ b/tools/travis-before-install.sh @@ -26,6 +26,6 @@ fi source venv/bin/activate python -V pip install --upgrade pip setuptools -pip install nose pytz cython +pip install nose pytz cython==0.26 if [ -n "$USE_ASV" ]; then pip install asv; fi popd |