summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2020-08-03 13:20:55 +0300
committermattip <matti.picus@gmail.com>2020-08-03 14:09:09 +0300
commit2e1df6d89a0fdf7f2063bdf0bd2c388f607357e4 (patch)
tree3be2c25c9a6c000becc4240d7d2d98f999645e8c /azure-pipelines.yml
parent0f123387616a61cd72d74aa5ec5bb2044ca8d8d8 (diff)
downloadnumpy-2e1df6d89a0fdf7f2063bdf0bd2c388f607357e4.tar.gz
BLD: pin setuptools<49.2.0
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index cdff56e1a..da57649b8 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -132,7 +132,7 @@ stages:
otool -L /usr/local/lib/libopenblas*
displayName: 'install pre-built openblas'
condition: eq(variables['USE_OPENBLAS'], '1')
- - script: python -m pip install --upgrade pip setuptools wheel
+ - script: python -m pip install --upgrade pip 'setuptools<49.2.0' wheel
displayName: 'Install tools'
- script: |
python -m pip install -r test_requirements.txt
@@ -247,7 +247,7 @@ stages:
displayName: 'add gcc 4.8'
- script: |
# python3 has no setuptools, so install one to get us going
- python3 -m pip install --user --upgrade pip setuptools!=49.2.0
+ python3 -m pip install --user --upgrade pip 'setuptools<49.2.0'
python3 -m pip install --user -r test_requirements.txt
CPPFLAGS='' CC=gcc-4.8 F77=gfortran-5 F90=gfortran-5 \
python3 runtests.py --debug-info --mode=full -- -rsx --junitxml=junit/test-results.xml