From 883e7a073e9409516e3469a82fe8bd2c7a3fbd03 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Tue, 28 Oct 2025 21:53:29 +0900 Subject: [PATCH] tox: Fix outdated default envlist Python 3.8 is no longer supported. Use the unversioned env so that we don't have to update it when minimum supported python version is bumped. Change-Id: I94d6c81f8913b1d663329f86382fb1f14e3e8f60 Signed-off-by: Takashi Kajinami --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 9c98f896..3eb6e0c8 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = docs,py38,pep8 +envlist = docs,py3,pep8 minversion = 3.18.0 [testenv]