Skip to content

Commit

Permalink
MAINT: use SPEC0 for workflow tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jklenzing committed Sep 12, 2024
1 parent cdeb775 commit a1864b7
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,14 @@ jobs:
numpy_ver: ["latest"]
test_config: ["latest"]
include:
# NEP29 compliance settings
# SPEC0 compliance settings
- python-version: "3.10"
numpy_ver: "1.24"
pandas_ver: "1.5.0"
scipy_ver: "1.10.0"
xarray_ver: "2022.9.0"
os: ubuntu-latest
test_config: "NEP29"
test_config: "SPEC0"
# Operational compliance settings
- python-version: "3.6.8"
numpy_ver: "1.19.5"
Expand All @@ -46,9 +49,12 @@ jobs:
pip install .
- name: Install NEP29 dependencies
if: ${{ matrix.test_config == 'NEP29'}}
if: ${{ matrix.test_config == 'SPEC0'}}
run: |
pip install numpy==${{ matrix.numpy_ver }}
pip install pandas==${{ matrix.pandas_ver }}
pip install scipy==${{ matrix.scipy_ver }}
pip install xarray==${{ matrix.xarray_ver }}
pip install --upgrade-strategy only-if-needed .[test]
- name: Install standard dependencies
Expand Down

0 comments on commit a1864b7

Please sign in to comment.