From fd9ec4636975b293d9ff7f9f8cc2499b41110709 Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Wed, 20 Apr 2022 09:48:07 -0600 Subject: [PATCH] MAINT: Fix failing Python 3.8 32-bit Windows test. --- azure-pipelines.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index be0f0a214fbf..0e7e097db51f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -80,8 +80,10 @@ stages: - script: | docker run -v $(pwd):/numpy -e CFLAGS="-msse2 -std=c99 -UNDEBUG" \ -e F77=gfortran-5 -e F90=gfortran-5 quay.io/pypa/manylinux2014_i686 \ - /bin/bash -xc "cd numpy && \ - /opt/python/cp38-cp38/bin/python -mvenv venv &&\ + /bin/bash -xc " \ + git config --global --add safe.directory /numpy && \ + cd /numpy && \ + /opt/python/cp38-cp38/bin/python -mvenv venv && \ source venv/bin/activate && \ target=\$(python3 tools/openblas_support.py) && \ cp -r \$target/lib/* /usr/lib && \