diff options
author | Matthew Brett <matthew.brett@gmail.com> | 2014-11-10 12:21:06 -0800 |
---|---|---|
committer | Matthew Brett <matthew.brett@gmail.com> | 2014-11-10 12:21:06 -0800 |
commit | 7d1ea605b9af3afbc253906ac6c5774f07eaf957 (patch) | |
tree | 53615e9e503a45744964c7dc109ae0f1f1b94443 | |
parent | 96714918d64ebf64e0e133a385da061408e4a03b (diff) | |
download | numpy-7d1ea605b9af3afbc253906ac6c5774f07eaf957.tar.gz |
MAINT: give up on rackspace wheels
Rackspace wheels (from http://wheels.scikit-image.org) are giving
timeouts, again - e.g.:
https://travis-ci.org/numpy/numpy/jobs/40578751
Use Nathaniel's trick of not compiling Cython, for speed, and to work
round previous Cython build breakage.
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 552ba07f2..b39d335ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,7 +31,8 @@ before_install: # pip install coverage - python -V - pip install --upgrade pip setuptools - - pip install --find-links http://travis-wheels.scikit-image.org --install-option="--no-cython-compile" Cython + # Speed up install by not compiling Cython + - pip install --install-option="--no-cython-compile" Cython - sudo apt-get install -qq libatlas-dev libatlas-base-dev gfortran - popd |