diff options
author | John Kirkham <kirkhamj@janelia.hhmi.org> | 2016-02-05 14:44:54 -0500 |
---|---|---|
committer | John Kirkham <kirkhamj@janelia.hhmi.org> | 2016-02-05 15:41:51 -0500 |
commit | 4db3e19312483351d545f64bcb45fdcda278490c (patch) | |
tree | 410fc5b6254b85e38ece8320da9bf401592b6c25 /.travis.yml | |
parent | 99cd63471583f5bd660ff9c09ad94f736f372b4d (diff) | |
download | numpy-4db3e19312483351d545f64bcb45fdcda278490c.tar.gz |
TST: Pin virtualenv used on Travis CI. [skip appveyor]
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index ccb182816..540d05c56 100644 --- a/.travis.yml +++ b/.travis.yml @@ -77,6 +77,10 @@ before_install: - pushd builds # Build into own virtualenv # We therefore control our own environment, avoid travis' numpy + # + # Some change in virtualenv 14.0.5 caused `test_f2py` to fail. So, we have + # pinned `virtualenv` to the last known working version to avoid this failure. + - pip install -U 'virtualenv==14.0.4' - virtualenv --python=python venv - source venv/bin/activate - python -V |