summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorPierre Glaser <pierreglaser@msn.com>2018-10-05 14:37:00 +0200
committerPierre Glaser <pierreglaser@msn.com>2018-10-05 14:37:00 +0200
commit63a4ff0697c9f251c8c9e6eb405df50544502529 (patch)
tree71ab7afb521932228ff0ba747d8904a4dd8d186d /.appveyor.yml
parent5f3c0c2ba7f0c794a483c7e74722f95bdd3bb827 (diff)
downloadnumpy-63a4ff0697c9f251c8c9e6eb405df50544502529.tar.gz
MNT add pickle5 to some python 3.6/7 setups for the CI suite
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index f5696e950..01440c6a0 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -39,11 +39,13 @@ environment:
PYTHON_VERSION: 3.6
PYTHON_ARCH: 64
TEST_MODE: full
+ INSTALL_PICKLE5: 1
- PYTHON: C:\Python37-x64
PYTHON_VERSION: 3.7
PYTHON_ARCH: 64
TEST_MODE: full
+ INSTALL_PICKLE5: 1
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
@@ -101,6 +103,8 @@ install:
# Upgrade to the latest pip.
- 'python -m pip install -U pip setuptools wheel'
+ - if [%INSTALL_PICKLE5%]==[1] echo pickle5 >> tools/ci/appveyor/requirements.txt
+
# Install the numpy test dependencies.
- 'pip install -U --timeout 5 --retries 2 -r tools/ci/appveyor/requirements.txt'