Skip to content

Commit 74e08c4

Browse files
ariel-anielirjarry
authored andcommitted
tox: bumped Python versions
* `envlist` looks for Python 3.9 to 3.13; these are the ones being supported [1] * dropped 3.6 to 3.8 from CI/CD tests * removed `py3`: it is never used, since first found wins [2]. ``` $ tox -l format lint py39 py310 py311 py312 py313 pypy3 lydevel coverage ``` [1] https://devguide.python.org/versions/ [2] https://tox.wiki/en/stable/config.html#python-options Signed-off-by: Ariel Otilibili <[email protected]>
1 parent adab39c commit 74e08c4

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,6 @@ jobs:
4040
strategy:
4141
matrix:
4242
include:
43-
- python: 3.6
44-
toxenv: py36
45-
- python: 3.7
46-
toxenv: py37
47-
- python: 3.8
48-
toxenv: py38
4943
- python: 3.9
5044
toxenv: py39
5145
- python: "3.10"
@@ -54,6 +48,8 @@ jobs:
5448
toxenv: py311
5549
- python: "3.12"
5650
toxenv: py312
51+
- python: "3.13"
52+
toxenv: py313
5753
- python: pypy3.9
5854
toxenv: pypy3
5955
steps:

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = format,lint,py{36,37,38,39,310,311,312,py3,3},lydevel,coverage
2+
envlist = format,lint,py{39,310,311,312,313,py3},lydevel,coverage
33
skip_missing_interpreters = true
44
isolated_build = true
55
distdir = {toxinidir}/dist

0 commit comments

Comments
 (0)