Skip to content

Commit

Permalink
BUG: toggle apexpy to NEP29
Browse files Browse the repository at this point in the history
Only test apexpy with oldest numpy.
  • Loading branch information
aburrell committed Jul 12, 2024
1 parent 45e6014 commit 5fbd019
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ jobs:
run: pip install aacgmv2 --no-binary==aacgmv2

- name: Install apexpy for MacOS X
# Skip apexpy for nep29 tests
if: ${{ matrix.numpy_ver == 'latest' && matrix.os == 'macos-latest' }}
# Only test 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: |
Expand All @@ -59,8 +59,8 @@ jobs:
CC=/opt/homebrew/bin/gcc-14 FC=/opt/homebrew/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' }}
# Only test 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 apexpy --no-binary==apexpy
Expand Down

0 comments on commit 5fbd019

Please sign in to comment.