From 936e67cdfe8cd593b4240cbaa3706eb5f62141e7 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Wed, 17 Sep 2025 00:21:18 +0900 Subject: [PATCH] Fix outdated default envlist Python 3.9 is no longer supported. Use the unversioned template so that we don't have to update it when supported python versions are updated. Users can still require specific version by adding -e py3N to command line. Change-Id: I68843d249cb9458d2966b9309ece21337b80687d Signed-off-by: Takashi Kajinami --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 0b9943b8..962fef74 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 3.1.1 -envlist = py39,pep8 +envlist = py3,pep8 ignore_basepython_conflict = True [testenv]