diff options
-rw-r--r-- | azure-pipelines.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4d1351886..7b23fef61 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -34,9 +34,9 @@ stages: vmImage: 'ubuntu-18.04' steps: - script: | - docker pull quay.io/pypa/manylinux2010_i686:2020-04-29-0e1afc5 + docker pull quay.io/pypa/manylinux2010_i686 docker run -v $(pwd):/numpy -e CFLAGS="-msse2 -std=c99 -UNDEBUG" \ - -e F77=gfortran-5 -e F90=gfortran-5 quay.io/pypa/manylinux2010_i686:2020-04-29-0e1afc5 \ + -e F77=gfortran-5 -e F90=gfortran-5 quay.io/pypa/manylinux2010_i686 \ /bin/bash -xc "cd numpy && \ /opt/python/cp38-cp38/bin/python -mvenv venv &&\ source venv/bin/activate && \ |