Skip to content

Commit fa50d65

Browse files
authored
Declare support for Python 3.13 (#487)
1 parent 078bc84 commit fa50d65

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
timeout-minutes: 5
3030
strategy:
3131
matrix:
32-
python-version: ["3.8", "3.12"]
32+
python-version: ["3.8", "3.13"]
3333
fail-fast: false
3434
steps:
3535
- uses: actions/checkout@v4
@@ -62,7 +62,7 @@ jobs:
6262
strategy:
6363
matrix:
6464
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
65-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
65+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
6666
fail-fast: false
6767
steps:
6868
- uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ Bugfixes
88
which only exists on Python 3.13+ when using `typing.TypeVar`.
99
* Reduce false positives from Y052 in relation to enum subclasses.
1010

11+
Other changes
12+
* Declare support for Python 3.13
13+
1114
## 24.4.1
1215

1316
New error codes:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ classifiers = [
4343
"Programming Language :: Python :: 3.10",
4444
"Programming Language :: Python :: 3.11",
4545
"Programming Language :: Python :: 3.12",
46+
"Programming Language :: Python :: 3.13",
4647
"Topic :: Software Development :: Libraries :: Python Modules",
4748
"Topic :: Software Development :: Quality Assurance",
4849
]

0 commit comments

Comments
 (0)