Skip to content

Commit 066e0f9

Browse files
Add support for Python 3.16
1 parent f070136 commit 066e0f9

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: ["3.15", "3.14", "3.13", "3.12"]
17+
python-version: ["3.16", "3.15", "3.14", "3.13", "3.12"]
1818
include:
19-
- python-version: "3.15"
19+
- python-version: "3.16"
2020
branch: "main"
21+
allow-prerelease: "true"
2122
steps:
2223
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2324
with:

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ classifiers = [
2323
"Programming Language :: Python :: 3.13",
2424
"Programming Language :: Python :: 3.14",
2525
"Programming Language :: Python :: 3.15",
26+
"Programming Language :: Python :: 3.16",
2627
"Topic :: Documentation",
2728
"Topic :: Software Development :: Documentation",
2829
]
@@ -66,4 +67,4 @@ lint.ignore = [
6667
lint.isort.required-imports = [ "from __future__ import annotations" ]
6768

6869
[tool.pyproject-fmt]
69-
max_supported_python = "3.15"
70+
max_supported_python = "3.16"

0 commit comments

Comments
 (0)