Skip to content

Commit 4b99ccd

Browse files
committed
Add support for Python 3.13
1 parent 5f8b5d2 commit 4b99ccd

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
strategy:
1919
matrix:
2020
uv-resolution: ['highest', 'lowest']
21-
# The minimum version should be represented in setup.py.
22-
python-version: ["3.9", "3.10", "3.11", "3.12"]
21+
# The minimum version should be represented in pyproject.toml.
22+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2323
os: [ubuntu-latest, windows-latest]
2424

2525
runs-on: ${{ matrix.os }}
@@ -63,7 +63,7 @@ jobs:
6363
pip-missing-reqs pip_check_reqs
6464
pylint pip_check_reqs tests
6565
pyroma --min=10 .
66-
pyproject-fmt --check --keep-full-version .
66+
pyproject-fmt --check .
6767
pyright .
6868
actionlint
6969

CHANGELOG.rst

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
Release History
33
---------------
44

5+
Next
6+
7+
- Support for Python 3.13
8+
59
2.5.4
610

711
- Performance improvements.

pyproject.toml

+6-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ authors = [
1919
{ name = "Adam Dangoor", email = "[email protected]" },
2020
{ name = "Richard Jones", email = "[email protected]" },
2121
]
22-
requires-python = ">=3.9.0"
22+
requires-python = ">=3.9"
2323
classifiers = [
2424
"Development Status :: 5 - Production/Stable",
2525
"Intended Audience :: Developers",
@@ -29,6 +29,7 @@ classifiers = [
2929
"Programming Language :: Python :: 3.10",
3030
"Programming Language :: Python :: 3.11",
3131
"Programming Language :: Python :: 3.12",
32+
"Programming Language :: Python :: 3.13",
3233
"Topic :: Software Development :: Build Tools",
3334
]
3435
dynamic = [
@@ -193,3 +194,7 @@ strict = true
193194
[tool.pyright]
194195

195196
typeCheckingMode = "strict"
197+
198+
[tool.pyproject-fmt]
199+
keep_full_version = true
200+
max_supported_python = "3.13"

0 commit comments

Comments
 (0)