diff options
author | mattip <matti.picus@gmail.com> | 2019-06-20 13:51:07 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-06-20 13:51:07 +0300 |
commit | 5e687255f5d10e11e39a818c2fcefb65e4952807 (patch) | |
tree | 8058dabe365f22ddccde8342578155814f883813 /azure-pipelines.yml | |
parent | 9fe7fec9a68c250b462a9cffdcdce185daaa9020 (diff) | |
download | numpy-5e687255f5d10e11e39a818c2fcefb65e4952807.tar.gz |
MAINT: add script to local repo
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 59b9944d4..9e9001611 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -191,13 +191,6 @@ jobs: choco install -y mingw --forcex86 --force --version=5.3.0 displayName: 'Install 32-bit mingw for 32-bit builds' condition: eq(variables['BITS'], 32) - - powershell: | - $wc = New-Object net.webclient - $gh_base = "https://raw.githubusercontent.com/MacPython/numpy-wheels/master/" - $wc.Downloadfile($gh_base + "openblas_support.py", "$pwd\openblas_support.py") - python -c "import openblas_support; openblas_support.make_init('numpy')" - del openblas_support.py - displayName: 'Create _distributor_init.py for OpenBlas' # NOTE: for Windows builds it seems much more tractable to use runtests.py # vs. manual setup.py and then runtests.py for testing only - powershell: | @@ -208,6 +201,7 @@ jobs: $env:PATH = "C:\\tools\\mingw32\\bin;" + $env:PATH refreshenv } + python -c "from tools import openblas_support; openblas_support.make_init('numpy')" pip wheel -v -v -v --wheel-dir=dist . ls dist -r | Foreach-Object { |