Skip to content

Commit 3a5af53

Browse files
Support, and test against, Python 3.13
1 parent dcda7ed commit 3a5af53

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- "3.10"
2020
- "3.11"
2121
- "3.12"
22+
- "3.13"
2223
steps:
2324
- uses: actions/checkout@v4
2425
- uses: actions/setup-python@v5

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,6 @@
3535
'Programming Language :: Python :: 3.10',
3636
'Programming Language :: Python :: 3.11',
3737
'Programming Language :: Python :: 3.12',
38+
'Programming Language :: Python :: 3.13',
3839
],
3940
)

tox.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ min_version = 4.3.5
33

44
envlist =
55
coverage-erase
6-
py{3.12, 3.11, 3.10, 3.9, 3.8}
6+
py{3.13, 3.12, 3.11, 3.10, 3.9, 3.8}
77
coverage-report
88

99
skip_missing_interpreters = True
@@ -15,7 +15,7 @@ package = wheel
1515
wheel_build_env = build_wheel
1616

1717
depends =
18-
py{3.12, 3.11, 3.10, 3.9, 3.8}: coverage-erase
18+
py{3.13, 3.12, 3.11, 3.10, 3.9, 3.8}: coverage-erase
1919
deps =
2020
coverage[toml]
2121
pytest
@@ -35,7 +35,7 @@ commands =
3535

3636
[testenv:coverage-report]
3737
depends =
38-
py{3.12, 3.11, 3.10, 3.9, 3.8}
38+
py{3.13, 3.12, 3.11, 3.10, 3.9, 3.8}
3939
no_package = true
4040
skip_install = true
4141
deps =

0 commit comments

Comments
 (0)