Skip to content

Commit

Permalink
BUG: fix numpy install
Browse files Browse the repository at this point in the history
Fix the limited numpy install to use a good max version number and changed the gcc debug statements.
  • Loading branch information
aburrell committed Jul 12, 2024
1 parent a2e0c3e commit cedaa1b
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,8 @@ jobs:
continue-on-error: true
run: |
brew reinstall gcc
which gcc
gcc --version
ls /opt/homebrew/bin
ls /usr/bin
ls /opt/homebrew/bin/*gcc*
/opt/homebrew/bin/gfortran --version
CC=/opt/homebrew/bin/gcc FC=/opt/homebrew/bin/gfortran pip install apexpy --no-binary==apexpy
- name: Install apexpy for Unix/Windows
Expand All @@ -67,7 +65,7 @@ jobs:
continue-on-error: true
run: |
pip uninstall -y numpy
pip install numpy<2.0.0
pip install numpy<=1.26.4
pip install apexpy --no-binary==apexpy
pip install numpy --upgrade
Expand Down

0 comments on commit cedaa1b

Please sign in to comment.