Skip to content

Commit

Permalink
Install/compile NumPy without OpenBLAS in CI for PyPy 3.10, as no whe…
Browse files Browse the repository at this point in the history
…els are available
  • Loading branch information
YannickJadoul committed Sep 24, 2023
1 parent 6eb58a2 commit 4b7729f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,10 @@ jobs:
with:
key: ${{ github.job }}-${{ matrix.runs-on }}-${{ matrix.arch }}-${{ matrix.release }}-${{ matrix.gcc }}-${{ matrix.clang }}

- name: Install OpenBLAS on macOS for NumPy
if: runner.os == 'macOS' && startsWith(matrix.python, 'pypy')
- name: Install NumPy without OpenBLAS for PyPy 3.10
if: matrix.python == 'pypy-3.10-nightly'
run: |
brew install openblas
echo "OPENBLAS=$(brew --prefix openblas)" >> $GITHUB_ENV
pip install numpy --config-settings=setup-args="-Dallow-noblas=true"
- name: Install requirements
run: |
Expand Down

0 comments on commit 4b7729f

Please sign in to comment.