Skip to content

Commit

Permalink
Restrict Python version to 3.10
Browse files Browse the repository at this point in the history
This is because of the scipy issue (csdms#162), yet to be fixed.
  • Loading branch information
mdpiper committed Oct 2, 2024
1 parent cfec587 commit 373423d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.11"]
python-version: ["3.10"]

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.11"]
python-version: ["3.10"]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -62,5 +62,5 @@ jobs:
pytest --cov=pymt --cov-report=xml:$(pwd)/coverage.xml -vvv
- name: Coveralls
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11'
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'
uses: AndreMiras/coveralls-python-action@v20201129

0 comments on commit 373423d

Please sign in to comment.