diff options
author | mattip <matti.picus@gmail.com> | 2020-07-15 00:03:09 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2020-07-15 00:03:09 +0300 |
commit | b4ba2791a0b63353935e43bc60f58bf81901bc61 (patch) | |
tree | 56d44e27a3ece40493f7497aedd9cbcee0359e1b /azure-pipelines.yml | |
parent | 80882548e704896e409f557ebc04ee2c2ca2ac46 (diff) | |
download | numpy-b4ba2791a0b63353935e43bc60f58bf81901bc61.tar.gz |
MAINT,BLD: add setuptools install to the gcc4.8 run
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 1ffb4876e..51f30c263 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -241,7 +241,8 @@ stages: fi displayName: 'add gcc 4.8' - script: | - python3 -m pip install --user --upgrade pip + # 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 -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 |