Skip to content

Commit 2653f18

Browse files
chore: add python 3.13
1 parent 8077ef3 commit 2653f18

File tree

1 file changed

+26
-1
lines changed

1 file changed

+26
-1
lines changed

tox.ini

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py27, py34, py35, py36, py37, py312
7+
envlist = py27, py34, py35, py36, py37, py38, py39, py310, py311, py312, py313
88

99
[testenv]
1010
commands = coverage erase
@@ -40,7 +40,32 @@ commands = {[testenv]commands}
4040
deps = {[testenv]deps}
4141
basepython = python3.7
4242

43+
[testenv:py38]
44+
commands = {[testenv]commands}
45+
deps = {[testenv]deps}
46+
basepython = python3.8
47+
48+
[testenv:py39]
49+
commands = {[testenv]commands}
50+
deps = {[testenv]deps}
51+
basepython = python3.9
52+
53+
[testenv:py310]
54+
commands = {[testenv]commands}
55+
deps = {[testenv]deps}
56+
basepython = python3.10
57+
58+
[testenv:py311]
59+
commands = {[testenv]commands}
60+
deps = {[testenv]deps}
61+
basepython = python3.11
62+
4363
[testenv:py312]
4464
commands = {[testenv]commands}
4565
deps = {[testenv]deps}
4666
basepython = python3.12
67+
68+
[testenv:py313]
69+
commands = {[testenv]commands}
70+
deps = {[testenv]deps}
71+
basepython = python3.13

0 commit comments

Comments
 (0)