Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pull RC changes back into develop #121

Merged
merged 18 commits into from
Aug 14, 2024
Merged
20 changes: 16 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ jobs:
- name: Install NEP29 dependencies
if: ${{ matrix.numpy_ver != 'latest'}}
run: |
pip install .[test]
pip install scipy==1.13.1
pip install numpy==${{ matrix.numpy_ver }}
pip install --upgrade-strategy only-if-needed .[test]

- name: Install standard dependencies
if: ${{ matrix.numpy_ver == 'latest'}}
Expand All @@ -47,9 +48,20 @@ jobs:
continue-on-error: true
run: pip install aacgmv2 --no-binary==aacgmv2

- name: Install apexpy
# Skip apexpy for nep29 tests
if: ${{ matrix.numpy_ver == 'latest'}}
- name: Install apexpy for MacOS X
# 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: |
brew reinstall gcc
/opt/homebrew/bin/gfortran --version
/opt/homebrew/bin/gcc-14 --version
CC=/opt/homebrew/bin/gcc-14 FC=/opt/homebrew/bin/gfortran pip install apexpy --no-binary==apexpy

- name: Install apexpy for Unix/Windows
# 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
2 changes: 1 addition & 1 deletion .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"orcid": "0000-0001-8321-6074"
},
{
"affiliation": "Stoneris",
"affiliation": "Cosmic Studio",
"name": "Stoneback, Russell",
"orcid": "0000-0001-7216-4336"
},
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/).

## [0.3.5] - 2024-XX-XX
## [0.3.5] - 2024-07-16
* Maintenance
* Update workflows coveralls usage
* Update NEP29
Expand Down
Loading