Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fc324e3

Browse files
committed
MAINT: Pin scipy-openblas version.
Partial backport of #25085.
1 parent 4962e22 commit fc324e3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/linux_musl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
python -m venv test_env
5656
source test_env/bin/activate
5757
58-
pip install scipy-openblas64
58+
pip install "scipy-openblas64<=0.3.23.293.2"
5959
6060
pip install -r build_requirements.txt -r test_requirements.txt
6161

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
env:
5252
PKG_CONFIG_PATH: ${{ github.workspace }}/.openblas
5353
run: |
54-
python -m pip install scipy-openblas32
54+
python -m pip install "scipy-openblas32<=0.3.23.293.2"
5555
spin build --with-scipy-openblas=32 -j2 -- --vsenv
5656
5757
- name: Install NumPy (Clang-cl)
@@ -60,7 +60,7 @@ jobs:
6060
PKG_CONFIG_PATH: ${{ github.workspace }}/.openblas
6161
run: |
6262
"[binaries]","c = 'clang-cl'","cpp = 'clang-cl'","ar = 'llvm-lib'","c_ld = 'lld-link'","cpp_ld = 'lld-link'" | Out-File $PWD/clang-cl-build.ini -Encoding ascii
63-
python -m pip install scipy-openblas32
63+
python -m pip install "scipy-openblas32<=0.3.23.293.2"
6464
spin build --with-scipy-openblas=32 -j2 -- --vsenv --native-file=$PWD/clang-cl-build.ini
6565
6666
- name: Meson Log

azure-steps-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ steps:
4242
python -m pip install . -v -Csetup-args="--vsenv" -Csetup-args="-Dblas=none" -Csetup-args="-Dlapack=none" -Csetup-args="-Dallow-noblas=true"
4343
}
4444
elseif ( Test-Path env:NPY_USE_BLAS_ILP64 ) {
45-
python -m pip install scipy-openblas64 spin
45+
python -m pip install "scipy-openblas64<=0.3.23.293.2" spin
4646
spin config-openblas --with-scipy-openblas=64
4747
$env:PKG_CONFIG_PATH="$pwd/.openblas"
4848
python -m pip install . -v -Csetup-args="--vsenv" -Csetup-args="-Duse-ilp64=true"

0 commit comments

Comments
 (0)