Skip to content

Commit 401f5c8

Browse files
Stop testing unsupported Python 3.8 and 3.9
Either support Python 3.8 and 3.9 officially and keep testing these versions, or stop testing. This grey area where you don't support versions but still test them just in case doesn't help. For example, ruff targets `requires-python` and generates code that may not be compatible with earlier versions. Such code will break CI tests with unsupported versions of Python.
1 parent 315f6c1 commit 401f5c8

1 file changed

Lines changed: 0 additions & 32 deletions

File tree

tox.ini

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -35,38 +35,6 @@ commands =
3535
deps =
3636
ruff
3737

38-
[testenv:py38]
39-
basepython = python3.8
40-
commands = pytest -v --doctest-modules --ignore benchmark --doctest-glob="README.md" {posargs}
41-
deps =
42-
pytest
43-
44-
[testenv:py38-extra]
45-
basepython = python3.8
46-
commands = pytest -v --doctest-modules --ignore benchmark --doctest-glob="README.md" {posargs}
47-
deps =
48-
pytest
49-
numpy
50-
pandas
51-
wcwidth
52-
53-
54-
[testenv:py39]
55-
basepython = python3.9
56-
commands = pytest -v --doctest-modules --ignore benchmark --doctest-glob="README.md" {posargs}
57-
deps =
58-
pytest
59-
60-
[testenv:py39-extra]
61-
basepython = python3.9
62-
commands = pytest -v --doctest-modules --ignore benchmark --doctest-glob="README.md" {posargs}
63-
deps =
64-
pytest
65-
numpy
66-
pandas
67-
wcwidth
68-
69-
7038
[testenv:py310]
7139
basepython = python3.10
7240
commands = pytest -v --doctest-modules --ignore benchmark --doctest-glob="README.md" {posargs}

0 commit comments

Comments
 (0)