From d98ba5cc177f2fda9ba5eca6c1eda2ae6b4e125c Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Tue, 16 Dec 2014 08:53:34 +0000 Subject: [PATCH] Add workaround for frequent Travis build failures during Cython compilation. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f064fe0c4..f5ccfdf48 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ install: - pip install -U nose - if ! [[ $TRAVIS_PYTHON_VERSION > '2.6' ]]; then pip install unittest2 ; fi - if [[ $TRAVIS_PYTHON_VERSION > '3.' ]]; then pip install numpy ; fi - - pip install cython + - pip install --install-option="--no-cython-compile" cython - pip install coverage - pip install coveralls - python setup.py develop