Skip to content

Commit e6ba2ee

Browse files
ci: pin python versions (#93)
* ci: pin python versions * docs: update changelog
1 parent eb63372 commit e6ba2ee

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/python-publish.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,12 @@ jobs:
1515
skip-hooks: "no-commit-to-branch"
1616

1717
checks:
18+
strategy:
19+
matrix:
20+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1821
uses: ecmwf-actions/reusable-workflows/.github/workflows/qa-pytest-pyproject.yml@v2
1922
with:
20-
python-version: "3.9"
23+
python-version: ${{ matrix.python-version }}
2124

2225
deploy:
2326
needs: [checks, quality]

.github/workflows/python-pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
checks:
1818
strategy:
1919
matrix:
20-
python-version: ["3.9", "3.10"]
20+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2121
uses: ecmwf-actions/reusable-workflows/.github/workflows/qa-pytest-pyproject.yml@v2
2222
with:
2323
python-version: ${{ matrix.python-version }}

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Keep it human-readable, your future self will thank you!
2121
### Changed
2222

2323
- Remove upstream dependencies from downstream-ci workflow (temporary) (#83)
24+
- ci: pin python versions to 3.9 ... 3.12 for checks (#93)
2425

2526
## [0.5.7](https://github.com/ecmwf/anemoi-datasets/compare/0.5.6...0.5.7) - 2024-10-09
2627

0 commit comments

Comments
 (0)