From a8ca9fcc1af49de2c8897c2bedd83d78d0fc0389 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Mon, 13 Jan 2025 13:56:24 +0900 Subject: [PATCH] Fix outdated envlist Python 3.7 support was already removed. Replace it by unversioned one so that we don't have to update it when supported python versions are changed. Also bump minimum tox version because allowlist_externals is available since 3.18.0 . Change-Id: Ie101c27ff021e2319669e221308260a8d62363c2 --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 13f3d40..c578034 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] -minversion = 3.1.1 -envlist = py37,pep8 +minversion = 3.18.0 +envlist = py3,pep8 ignore_basepython_conflict = True [testenv]