Skip to content

Commit

Permalink
BUG: fix apexpy errors
Browse files Browse the repository at this point in the history
Fix errors in apexpy installation attempt.
  • Loading branch information
aburrell committed Jul 12, 2024
1 parent 8933bab commit 86adf7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ jobs:
continue-on-error: true
run: |
brew reinstall gcc
CC=/usr/local/bin/gcc-12 FC=/usr/local/bin/gfortran-12 pip install apexpy --no-binary==apexpy
CC=/usr/local/bin/gcc FC=/usr/local/bin/gfortran pip install apexpy --no-binary==apexpy
- name: Install apexpy for Unix/Windows
# Skip apexpy for nep29 tests
if: ${{ matrix.numpy_ver == 'latest' && matrix.os != 'macos-latest' }}
# Optional package, continue with tests if install fails
continue-on-error: true
run: |
pip install numpy>=1.19.5,<2.0.0
pip install numpy<2.0.0
pip install apexpy --no-binary==apexpy
pip install numpy --upgrade
Expand Down

0 comments on commit 86adf7d

Please sign in to comment.