Skip to content

Commit

Permalink
Re-add install of numpy
Browse files Browse the repository at this point in the history
  • Loading branch information
loostrum committed Oct 3, 2024
1 parent 458d0df commit e9effe7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/actions/install-python-and-package/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,13 @@ runs:
python -m pip install --index-url https://download.pytorch.org/whl/cpu
python -m pip install tensorflow-cpu
# temporary: explicitly install wheel to avoid numpy install issues on macOS, see #861
- name: Install wheel
# temporary: explicitly install wheel followed by numpy on macOS, see #861
- name: Install wheel and numpy
if: runner.os == 'macOS'
shell: bash {0}
run: |
python -m pip install wheel
python -m pip install "$(grep numpy setup.cfg | head -n 1)"
- name: Install DIANNA
shell: bash {0}
Expand Down

0 comments on commit e9effe7

Please sign in to comment.