From 74e08c41e9b6f1f66a3874f1f1d462beda1b440d Mon Sep 17 00:00:00 2001 From: Ariel Otilibili Date: Fri, 25 Oct 2024 13:03:25 +0200 Subject: [PATCH] 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 --- .github/workflows/ci.yml | 8 ++------ tox.ini | 2 +- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 144e73b9..48be6a11 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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" @@ -54,6 +48,8 @@ jobs: toxenv: py311 - python: "3.12" toxenv: py312 + - python: "3.13" + toxenv: py313 - python: pypy3.9 toxenv: pypy3 steps: diff --git a/tox.ini b/tox.ini index 9fd15d15..b6b12c4c 100644 --- a/tox.ini +++ b/tox.ini @@ -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