Skip to content

Commit fd643e5

Browse files
authored
chore: Add python 3.13 support (#260)
## Description Add python 3.13 support
1 parent 20664f0 commit fd643e5

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
@@ -21,7 +21,7 @@ authors = [
2121
{ name = "European Centre for Medium-Range Weather Forecasts (ECMWF)", email = "software.support@ecmwf.int" },
2222
]
2323

24-
requires-python = ">=3.11"
24+
requires-python = ">=3.11,<3.14"
2525

2626
classifiers = [
2727
"Development Status :: 4 - Beta",
@@ -31,6 +31,7 @@ classifiers = [
3131
"Programming Language :: Python :: 3 :: Only",
3232
"Programming Language :: Python :: 3.11",
3333
"Programming Language :: Python :: 3.12",
34+
"Programming Language :: Python :: 3.13",
3435
"Programming Language :: Python :: Implementation :: CPython",
3536
"Programming Language :: Python :: Implementation :: PyPy",
3637
]

0 commit comments

Comments
 (0)