diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2019-07-21 16:41:04 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2019-07-28 16:45:32 -0600 |
commit | 397a2998411fa7fbd546374cc5ceac3f962da434 (patch) | |
tree | de6e78625c150f9faa670e21a77622e1260747e1 /tools/travis-before-install.sh | |
parent | 114a1b804bbb601588e2307700c48ec5df325899 (diff) | |
download | numpy-397a2998411fa7fbd546374cc5ceac3f962da434.tar.gz |
TST: Don't test with nose for Python 3.5+.
Nose imports imp, which has a PendingDeprecationWarning since
Python 3.4.
Diffstat (limited to 'tools/travis-before-install.sh')
-rwxr-xr-x | tools/travis-before-install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/travis-before-install.sh b/tools/travis-before-install.sh index b1c1f2ca1..448273db0 100755 --- a/tools/travis-before-install.sh +++ b/tools/travis-before-install.sh @@ -36,6 +36,6 @@ fi pip install --upgrade pip setuptools -pip install nose pytz cython pytest +pip install pytz cython pytest if [ -n "$USE_ASV" ]; then pip install asv; fi popd |