summaryrefslogtreecommitdiff
path: root/tools/travis-before-install.sh
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2017-09-23 10:24:58 -0600
committerCharles Harris <charlesr.harris@gmail.com>2017-09-23 10:24:58 -0600
commit120d3573181e9b702a140b89d417f6117b625fa9 (patch)
treef22f5ba9561ab5306d856740c2a7c12980794db2 /tools/travis-before-install.sh
parentb1ea23bbbf1b370d4993e222a539368aabec4e9c (diff)
downloadnumpy-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-xtools/travis-before-install.sh2
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