summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorRomain Tavenard <romain.tavenard@univ-rennes2.fr>2019-07-02 09:30:54 +0200
committerRomain Tavenard <romain.tavenard@univ-rennes2.fr>2019-07-02 09:30:54 +0200
commitf7fbb57a96bc6c7fe7d6237292aa39516c2f614e (patch)
treeb5e464595384cd2e0967ee22e6c136dd9724087b /.travis.yml
parent36e9d8d8ada28e86833d9c7c0b441e3000800a31 (diff)
Bug in syntax for new numpy version (cont'd)
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
1 files changed, 1 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 3ed0e72..5e5694b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -26,8 +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 + 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 -U "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>
- pip install flake8 pytest "pytest-cov<2.6"
- pip install .
# command to run tests + check syntax style