summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRomain Tavenard <romain.tavenard@univ-rennes2.fr>2019-07-02 09:26:32 +0200
committerRomain Tavenard <romain.tavenard@univ-rennes2.fr>2019-07-02 09:26:32 +0200
commitd85f61683cbb94ca6c6cb91bbd7d82ea295dec3a (patch)
treea6a2c216e06831ce481f7da19e965b7d464abbd0
parenta08375c8dc7594e247e586fcc4d65a96771d25c7 (diff)
Bug in syntax for new numpy version
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 2c6a5c8..e61b577 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -26,7 +26,7 @@ before_script: # configure a headless display to test plot generation
# command to install dependencies
install:
- pip install -r requirements.txt
- - pip install numpy>=1.14 "scipy<1.3" # for numpy array formatting in doctests
+ - pip install "numpy>=1.14" "scipy<1.3" # for numpy array formatting in doctests
# ^ scipy version: otherwise, pymanopt fails, cf <https://github.com/pymanopt/pymanopt/issues/77>
- python -c "import numpy; import scipy; print('numpy: ', numpy.__version__); print('scipy: ', scipy.__version__)"
- pip install flake8 pytest "pytest-cov<2.6"