diff options
author | Matthew Brett <matthew.brett@gmail.com> | 2014-11-07 19:18:34 -0800 |
---|---|---|
committer | Matthew Brett <matthew.brett@gmail.com> | 2014-11-07 19:18:34 -0800 |
commit | c12820f45e3cb9f2085b2a28501b7460da3ad243 (patch) | |
tree | 63ab5691cfa9b45cfc48562a4cf302b5306282a0 /.travis.yml | |
parent | df33cd8dd0f6a00e9a0daa93fc134f49b0f5c782 (diff) | |
download | numpy-c12820f45e3cb9f2085b2a28501b7460da3ad243.tar.gz |
MAINT: add --no-cython-compile flag for Cython
Add flag to prevent Cython compiling itself. This speeds Cython
installation and doesn't much slow down pyx file building.
From suggestion by Nathaniel.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 545a115ef..552ba07f2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,7 +31,7 @@ before_install: # pip install coverage - python -V - pip install --upgrade pip setuptools - - pip install --no-index --find-links http://travis-wheels.scikit-image.org cython + - pip install --find-links http://travis-wheels.scikit-image.org --install-option="--no-cython-compile" Cython - sudo apt-get install -qq libatlas-dev libatlas-base-dev gfortran - popd |