diff options
author | Pierre Glaser <pierreglaser@msn.com> | 2018-10-05 14:37:00 +0200 |
---|---|---|
committer | Pierre Glaser <pierreglaser@msn.com> | 2018-10-05 14:37:00 +0200 |
commit | 63a4ff0697c9f251c8c9e6eb405df50544502529 (patch) | |
tree | 71ab7afb521932228ff0ba747d8904a4dd8d186d /tools/travis-before-install.sh | |
parent | 5f3c0c2ba7f0c794a483c7e74722f95bdd3bb827 (diff) | |
download | numpy-63a4ff0697c9f251c8c9e6eb405df50544502529.tar.gz |
MNT add pickle5 to some python 3.6/7 setups for the CI suite
Diffstat (limited to 'tools/travis-before-install.sh')
-rwxr-xr-x | tools/travis-before-install.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/travis-before-install.sh b/tools/travis-before-install.sh index 1b8c370d3..c334e91ae 100755 --- a/tools/travis-before-install.sh +++ b/tools/travis-before-install.sh @@ -20,6 +20,11 @@ fi source venv/bin/activate python -V + +if [ -n "$INSTALL_PICKLE5" ]; then + pip install pickle5 +fi + pip install --upgrade pip setuptools pip install nose pytz cython pytest if [ -n "$USE_ASV" ]; then pip install asv; fi |