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

Skip to content

MAINT: Pin scipy-openblas version. #25192

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/linux_musl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
python -m venv test_env
source test_env/bin/activate

pip install scipy-openblas64
pip install "scipy-openblas64<=0.3.23.293.2"

pip install -r build_requirements.txt -r test_requirements.txt

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
env:
PKG_CONFIG_PATH: ${{ github.workspace }}/.openblas
run: |
python -m pip install scipy-openblas32
python -m pip install "scipy-openblas32<=0.3.23.293.2"
spin build --with-scipy-openblas=32 -j2 -- --vsenv

- name: Install NumPy (Clang-cl)
Expand All @@ -60,7 +60,7 @@ jobs:
PKG_CONFIG_PATH: ${{ github.workspace }}/.openblas
run: |
"[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
python -m pip install scipy-openblas32
python -m pip install "scipy-openblas32<=0.3.23.293.2"
spin build --with-scipy-openblas=32 -j2 -- --vsenv --native-file=$PWD/clang-cl-build.ini

- name: Meson Log
Expand Down
2 changes: 1 addition & 1 deletion azure-steps-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ steps:
python -m pip install . -v -Csetup-args="--vsenv" -Csetup-args="-Dblas=none" -Csetup-args="-Dlapack=none" -Csetup-args="-Dallow-noblas=true"
}
elseif ( Test-Path env:NPY_USE_BLAS_ILP64 ) {
python -m pip install scipy-openblas64 spin
python -m pip install "scipy-openblas64<=0.3.23.293.2" spin
spin config-openblas --with-scipy-openblas=64
$env:PKG_CONFIG_PATH="$pwd/.openblas"
python -m pip install . -v -Csetup-args="--vsenv" -Csetup-args="-Duse-ilp64=true"
Expand Down