From c8759dff84ef3672f61bed15f1d76625bad26458 Mon Sep 17 00:00:00 2001 From: Juan Nunez-Iglesias Date: Sat, 16 Jul 2016 20:15:03 -0500 Subject: [PATCH] Use PyPI numpy --- tools/travis_before_install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/travis_before_install.sh b/tools/travis_before_install.sh index 3f397dbc..937989e5 100755 --- a/tools/travis_before_install.sh +++ b/tools/travis_before_install.sh @@ -15,7 +15,7 @@ export DISPLAY=:99.0 export PYTHONWARNINGS="d,all:::skimage" export TEST_ARGS="--exe --ignore-files=^_test -v --with-doctest \ --ignore-files=^setup.py$" -WHEELBINARIES="matplotlib numpy scipy pillow cython" +WHEELBINARIES="matplotlib scipy pillow cython" retry () { # https://gist.github.com/fungusakafungus/1026804 @@ -47,6 +47,8 @@ source ~/venv/bin/activate pip install --upgrade pip pip install --retries 3 -q wheel flake8 codecov nose +# install numpy from PyPI instead of our wheelhouse +pip install --retries 3 -q wheel numpy # install wheels for requirement in $WHEELBINARIES; do