Skip to content

Commit

Permalink
use scipy-openblas on non-macos
Browse files Browse the repository at this point in the history
  • Loading branch information
mattip committed Dec 29, 2024
1 parent ba89abd commit 1e21305
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/numpy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,22 @@ jobs:
python -m pip install ninja
python -m pip install -r requirements/test_requirements.txt spin
python -m pip install -r requirements/build_requirements.txt
pip install -r requirements/ci_requirements.txt
# Use a newer cython
python -m pip install git+https://github.com/cython/cython.git
- name: Install NumPy (use Accelerate)
if matrix.os == 'macos-latest'
run: |
cd repo
spin build -- -Ddisable-optimization=true -Dallow-noblas=false
- name: Install NumPy (use Accelerate)
if matrix.os != 'macos-latest'
run: |
cd repo
spin build -j2 --with-scipy-openblas=32 -j2 -- -Ddisable-optimization=true
- name: Test
run: |
cd repo
Expand Down

0 comments on commit 1e21305

Please sign in to comment.