Skip to content

Commit 0acccb9

Browse files
Test with Python 3.14 too
1 parent 8c83646 commit 0acccb9

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

tox.ini

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# for testing and it is disabled by default.
99

1010
[tox]
11-
envlist = lint, py{38, 39, 310, 311, 312, 313}
11+
envlist = lint, py{38, 39, 310, 311, 312, 313, 314}
1212
isolated_build = True
1313

1414
[gh]
@@ -130,6 +130,22 @@ deps =
130130
pandas
131131
wcwidth
132132

133+
[testenv:py314]
134+
basepython = python3.14
135+
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
136+
deps =
137+
pytest
138+
139+
[testenv:py314-extra]
140+
basepython = python3.14
141+
setenv = PYTHONDEVMODE = 1
142+
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
143+
deps =
144+
pytest
145+
numpy
146+
pandas
147+
wcwidth
148+
133149
[flake8]
134150
max-complexity = 22
135151
max-line-length = 99

0 commit comments

Comments
 (0)