Skip to content

Commit

Permalink
tox: bumped Python versions
Browse files Browse the repository at this point in the history
* `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 <otilibil@eurecom.fr>
  • Loading branch information
Ariel Otilibili authored and rjarry committed Oct 25, 2024
1 parent adab39c commit 74e08c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,6 @@ jobs:
strategy:
matrix:
include:
- python: 3.6
toxenv: py36
- python: 3.7
toxenv: py37
- python: 3.8
toxenv: py38
- python: 3.9
toxenv: py39
- python: "3.10"
Expand All @@ -54,6 +48,8 @@ jobs:
toxenv: py311
- python: "3.12"
toxenv: py312
- python: "3.13"
toxenv: py313
- python: pypy3.9
toxenv: pypy3
steps:
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = format,lint,py{36,37,38,39,310,311,312,py3,3},lydevel,coverage
envlist = format,lint,py{39,310,311,312,313,py3},lydevel,coverage
skip_missing_interpreters = true
isolated_build = true
distdir = {toxinidir}/dist
Expand Down

0 comments on commit 74e08c4

Please sign in to comment.