diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-09-01 13:18:07 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2018-09-01 13:18:07 -0600 |
commit | 755b7b89eda1532764c99d546188d55a3db70aaf (patch) | |
tree | 4d15db1447b3e1c4d23a07306536ac342f607096 | |
parent | ddc0afc9de06bd21ca6facd60f2abe1d8ff5052a (diff) | |
download | numpy-755b7b89eda1532764c99d546188d55a3db70aaf.tar.gz |
TST: Update travis testing to use latest virtualenv.
The virtualenv version was pinned to 14.0.6, which seems to have started
causing test failures on Python 2.7 for some unknown reason. The lastest
version is 16.0.0 and that seems to fix the problem.
-rwxr-xr-x | tools/travis-before-install.sh | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/tools/travis-before-install.sh b/tools/travis-before-install.sh index 1671d35b4..1b8c370d3 100755 --- a/tools/travis-before-install.sh +++ b/tools/travis-before-install.sh @@ -9,12 +9,7 @@ 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. -# Appears we had some issues with certificates on Travis. It looks like -# bumping to 14.0.6 will help. -pip install -U 'virtualenv==14.0.6' +pip install -U virtualenv if [ -n "$USE_DEBUG" ] then |