From fdb789c244a5604ccb1c909a7c14c5a44e31c7c4 Mon Sep 17 00:00:00 2001 From: Ariel Otilibili Date: Thu, 29 Aug 2024 13:58:25 +0200 Subject: [PATCH] tox: Bumped Python versions * `envlist` looks for Python 3.8 to 3.12; these are the ones being supported [1] * removed `py3`: it is never used, since first found wins [2] * another bump is needed in October 2024: to take off 3.8 and 3.13 in. ``` $ tox -l format lint py38 py39 py310 py311 py312 pypy3 lydevel coverage ``` [1] https://devguide.python.org/versions/ [2] https://tox.wiki/en/stable/config.html#python-options Signed-off-by: Ariel Otilibili --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 9fd15d15..60c6f8d1 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{38,39,310,311,312,py3},lydevel,coverage skip_missing_interpreters = true isolated_build = true distdir = {toxinidir}/dist