Skip to content

Commit 836a8ac

Browse files
committed
Prepare 3.13 support
1 parent 38a67cb commit 836a8ac

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ def find_bundled_files() -> Iterable[str]:
6060
"Programming Language :: Python :: 3.10",
6161
"Programming Language :: Python :: 3.11",
6262
"Programming Language :: Python :: 3.12",
63+
"Programming Language :: Python :: 3.13",
6364
"Topic :: Software Development",
6465
],
6566
python_requires=">=3.8",

tox.ini

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion=2.3.1
3-
envlist = py38,py39,py310,py311,py312,black,mypy
3+
envlist = py38,py39,py310,py311,py312,py313,black,mypy
44
isolated_build = True
55

66
[testenv]
@@ -9,13 +9,13 @@ commands =
99

1010
[testenv:black]
1111
deps =
12-
black == 24.2.0
12+
black == 24.4.2
1313
commands =
1414
black --check .
1515

1616
[testenv:mypy]
1717
deps =
18-
mypy == 1.8.0
18+
mypy == 1.10.0
1919
types-setuptools
2020
commands =
2121
mypy .
@@ -27,3 +27,4 @@ python =
2727
3.10: py310
2828
3.11: py311
2929
3.12: py312, black, mypy
30+
3.13-dev: py313

0 commit comments

Comments
 (0)