summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2019-06-20 13:51:07 +0300
committermattip <matti.picus@gmail.com>2019-06-20 13:51:07 +0300
commit5e687255f5d10e11e39a818c2fcefb65e4952807 (patch)
tree8058dabe365f22ddccde8342578155814f883813 /azure-pipelines.yml
parent9fe7fec9a68c250b462a9cffdcdce185daaa9020 (diff)
downloadnumpy-5e687255f5d10e11e39a818c2fcefb65e4952807.tar.gz
MAINT: add script to local repo
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml8
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 {