diff options
author | mattip <matti.picus@gmail.com> | 2020-02-25 01:03:57 +0200 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2020-02-25 01:03:57 +0200 |
commit | f1863c5999f8b4bfa6e2c8af9d6a864a8c0f957b (patch) | |
tree | 6a49b7df1677fb347a378127ce6b96973dc4d5fc /azure-pipelines.yml | |
parent | a7adfda540f88d765f10ae8963abe4ae43cbfb34 (diff) | |
download | numpy-f1863c5999f8b4bfa6e2c8af9d6a864a8c0f957b.tar.gz |
BLD: update openblas download to new location, use manylinux2010-base
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 f1af9a333..46d39ca1d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -39,10 +39,10 @@ stages: /bin/bash -xc "cd numpy && \ /opt/python/cp38-cp38/bin/python -mvenv venv &&\ source venv/bin/activate && \ + python3 -m pip install urllib3 && \ target=\$(python3 tools/openblas_support.py) && \ cp -r \$target/lib/* /usr/lib && \ cp \$target/include/* /usr/include && \ - yum install -y libgfortran-4.4.7 && \ python3 -m pip install -r test_requirements.txt && \ echo CFLAGS \$CFLAGS && \ python3 -m pip install -v . && \ @@ -105,6 +105,7 @@ stages: # matches our MacOS wheel builds -- currently based # primarily on file size / name details - script: | + python -mpip install urllib3 target=$(python tools/openblas_support.py) ls -lR $target # manually link to appropriate system paths |