8000 BLD: handle 64-bit windows BLAS · numpy/numpy@e511380 · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit e511380

Browse files
committed
BLD: handle 64-bit windows BLAS
1 parent 7038c65 commit e511380

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

azure-steps-windows.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,13 @@ steps:
1717
python -m pip install urllib3
1818
$target = $(python tools/openblas_support.py)
1919
mkdir openblas
20-
echo Copying $target to openblas
21< 8000 code>-
cp $target openblas
22-
echo "##vso[task.setvariable variable=OPENBLAS]$pwd\openblas"
20+
echo Copying $target to openblas/openblas$env:OPENBLAS_SUFFIX.a
21+
cp $target openblas/openblas$env:OPENBLAS_SUFFIX.a
22+
If ( Test-Path env:NPY_USE_BLAS_ILP64 ){
23+
echo "##vso[task.setvariable variable=OPENBLAS64_]$pwd\openblas"
24+
} else {
25+
echo "##vso[task.setvariable variable=OPENBLAS]$pwd\openblas"
26+
}
2327
displayName: 'Download / Install OpenBLAS'
2428

2529
- powershell: |
@@ -36,7 +40,7 @@ steps:
3640
refreshenv
3741
}
3842
python -c "from tools import openblas_support; openblas_support.make_init('numpy')"
39-
pip wheel -v -v -v --wheel-dir=dist .
43+
pip wheel -v -v -v --no-build-isolation --no-use-pep517 --wheel-dir=dist .
4044
4145
ls dist -r | Foreach-Object {
4246
pip install $_.FullName

0 commit comments

Comments
 (0)
0