Skip to content

Commit

Permalink
Fix broken workflows
Browse files Browse the repository at this point in the history
Dropped testing from unsupported python versions (3.7 and 3.8, so we only test
on 3.9 - 3.11 for now); also added pyyaml to dev-feisty environment since
github actions were failing with

ModuleNotFoundError: No module named 'yaml'
  • Loading branch information
mnlevy1981 committed Dec 17, 2024
1 parent fc6d76d commit 1b34ac6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fail-fast: false
matrix:
os: ['ubuntu-latest']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v2
with:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/ci2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
# python-version: [3.8]
steps:
- uses: actions/checkout@v2

Expand Down
1 change: 1 addition & 0 deletions ci/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ dependencies:
- pre-commit
- pytest
- pytest-cov
- pyyaml
- scipy
- xarray
- zarr
Expand Down

0 comments on commit 1b34ac6

Please sign in to comment.