From f56bef67e1bd67bb23d67f14170c24c7fdc8368f Mon Sep 17 00:00:00 2001 From: Cebtenzzre Date: Sun, 16 Jul 2023 18:44:53 -0400 Subject: [PATCH] Update python versions in tox.ini Python 3.6 support was already dropped in commit b9dfeac2 ("Drop Python 3.6 Support"). Don't attempt to run tests with it if it is installed. Python 3.11 is currently supported, so add it to the list. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index a9f8b827..a6e641ad 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py36,py37,py38,py39,py310 +envlist = py37,py38,py39,py310,py311 skipsdist = True skip_missing_interpreters = True