Skip to content

Commit c6888e5

Browse files
authored
chore: Add python 3.13 support (#510)
## Description Add python 3.13 support ***As a contributor to the Anemoi framework, please ensure that your changes include unit tests, updates to any affected dependencies and documentation, and have been tested in a parallel setting (i.e., with multiple GPUs). As a reviewer, you are also responsible for verifying these aspects and requesting changes if they are not adequately addressed. For guidelines about those please refer to https://anemoi.readthedocs.io/en/latest/*** By opening this pull request, I affirm that all authors agree to the [Contributor License Agreement.](https://github.com/ecmwf/codex/blob/main/Legal/contributor_license_agreement.md)
1 parent 63e10cd commit c6888e5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
checks:
2020
strategy:
2121
matrix:
22-
python-version: ["3.11", "3.12"]
22+
python-version: ["3.11", "3.12", "3.13"]
2323
uses: ecmwf/reusable-workflows/.github/workflows/qa-pytest-pyproject.yml@v2
2424
with:
2525
python-version: ${{ matrix.python-version }}

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ authors = [
2828
{ name = "European Centre for Medium-Range Weather Forecasts (ECMWF)", email = "software.support@ecmwf.int" },
2929
]
3030

31-
requires-python = ">=3.11"
31+
requires-python = ">=3.11,<3.14"
3232

3333
classifiers = [
3434
"Development Status :: 4 - Beta",
@@ -38,6 +38,7 @@ classifiers = [
3838
"Programming Language :: Python :: 3 :: Only",
3939
"Programming Language :: Python :: 3.11",
4040
"Programming Language :: Python :: 3.12",
41+
"Programming Language :: Python :: 3.13",
4142
"Programming Language :: Python :: Implementation :: CPython",
4243
"Programming Language :: Python :: Implementation :: PyPy",
4344
]

0 commit comments

Comments
 (0)