Skip to content

Commit

Permalink
Prepare 3.13 support (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleZijlstra authored Jul 12, 2024
1 parent 38a67cb commit 7e5e64b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ def find_bundled_files() -> Iterable[str]:
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
],
python_requires=">=3.8",
Expand Down
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion=2.3.1
envlist = py38,py39,py310,py311,py312,black,mypy
envlist = py38,py39,py310,py311,py312,py313,black,mypy
isolated_build = True

[testenv]
Expand All @@ -9,13 +9,13 @@ commands =

[testenv:black]
deps =
black == 24.2.0
black == 24.4.2
commands =
black --check .

[testenv:mypy]
deps =
mypy == 1.8.0
mypy == 1.10.0
types-setuptools
commands =
mypy .
Expand All @@ -27,3 +27,4 @@ python =
3.10: py310
3.11: py311
3.12: py312, black, mypy
3.13-dev: py313

0 comments on commit 7e5e64b

Please sign in to comment.