Skip to content

Commit d39e07e

Browse files
committed
Add support for Python 3.13
Signed-off-by: Tsuyoshi Hombashi <[email protected]>
1 parent 85b3c73 commit d39e07e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/lint_and_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
fail-fast: false
5555
matrix:
5656
python-version:
57-
["3.9", "3.10", "3.11", "3.12", "pypy3.10"]
57+
["3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.10"]
5858
os: [ubuntu-latest, macos-latest, windows-latest]
5959
timeout-minutes: 20
6060

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ def get_release_command_class() -> Dict[str, Type[setuptools.Command]]:
8686
"Programming Language :: Python :: 3.10",
8787
"Programming Language :: Python :: 3.11",
8888
"Programming Language :: Python :: 3.12",
89+
"Programming Language :: Python :: 3.13",
8990
"Programming Language :: Python :: 3 :: Only",
9091
"Programming Language :: Python :: Implementation :: CPython",
9192
"Programming Language :: Python :: Implementation :: PyPy",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{39,310,311,312}
3+
py{39,310,311,312,313}
44
pypy3
55
build
66
cov

0 commit comments

Comments
 (0)