Skip to content

Commit

Permalink
Merge 638f36d into 0fa7053
Browse files Browse the repository at this point in the history
  • Loading branch information
jklenzing committed Dec 23, 2021
2 parents 0fa7053 + 638f36d commit 748731d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
24 changes: 19 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,38 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: ["3.9", "3.10"]
os: [ubuntu-latest]
numpy_ver: ["latest"]
include:
- python-version: "3.8"
numpy_ver: "1.20"
os: ubuntu-latest

name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
name: Python ${{ matrix.python-version }} on ${{ matrix.os }} with numpy ${{ matrix.numpy_ver }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies

- name: Install requirements for testing setup
run: |
python -m pip install --upgrade pip
pip install -r test_requirements.txt
- name: Install NEP29 dependencies
if: ${{ matrix.numpy_ver != 'latest'}}
run: |
pip install --no-binary :numpy: numpy==${{ matrix.numpy_ver }}
- name: Install dependencies
run: |
pip install -r requirements.txt
# Manual install of OMMBV
pip install --no-binary :OMMBV: OMMBV
# Manual install of OMMBV required for 0.5.5
pip install OMMBV
- name: Set up pysat
run: |
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
* Improve docstrings throughout
* Testing
* Add style check for docstrings
* Include support for testing against multiple versions of numpy

## [0.2.2] - 2021-06-18
* Migrate pyglow interface to pysatIncubator
Expand Down

0 comments on commit 748731d

Please sign in to comment.