Skip to content

Commit bb86bda

Browse files
authored
Merge pull request #158 from ocean-eddy-cpt/bugfix-ci-python-version
Fix python version for tests
2 parents 5130514 + 49aa297 commit bb86bda

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/tests.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: ["ubuntu-latest"]
20-
python-version: ["3.6", "3.7", "3.8", "3.9"]
20+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
2121
steps:
2222
- uses: actions/checkout@v2
2323
- name: Cache conda
@@ -33,6 +33,7 @@ jobs:
3333
mamba-version: "*"
3434
channels: conda-forge, defaults
3535
channel-priority: true
36+
python-version: ${{ matrix.python-version }}
3637
activate-environment: gcm-filters-env
3738
use-only-tar-bz2: true # IMPORTANT: This needs to be set for caching to work properly!
3839
- shell: bash -l {0}

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ flake8-print
99
interrogate
1010
isort
1111
nbsphinx
12-
numcodecs==0.10.1
12+
numcodecs
1313
pre-commit
1414
pylint
1515
pytest

0 commit comments

Comments
 (0)