Skip to content

Commit 3dc2b2d

Browse files
committed
Add support for Python 3.13
1 parent 2eb8abf commit 3dc2b2d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
13+
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1414
os: [ubuntu-latest, windows-latest]
1515

1616
steps:

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ classifiers = [
3232
"Programming Language :: Python :: 3.10",
3333
"Programming Language :: Python :: 3.11",
3434
"Programming Language :: Python :: 3.12",
35+
"Programming Language :: Python :: 3.13",
3536
"Topic :: Software Development :: Libraries",
3637
"Topic :: Utilities",
3738
]
@@ -58,7 +59,7 @@ dependencies = [
5859
default = "pytest {args}"
5960

6061
[[tool.hatch.envs.test.matrix]]
61-
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
62+
python = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
6263

6364
[tool.setuptools_scm]
6465

0 commit comments

Comments
 (0)