]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
tox.ini: Remove some redundant lists of python versions 3428/head
authorBen Darnell <ben@bendarnell.com>
Fri, 18 Oct 2024 19:51:00 +0000 (15:51 -0400)
committerBen Darnell <ben@bendarnell.com>
Fri, 18 Oct 2024 19:59:46 +0000 (15:59 -0400)
tox.ini

diff --git a/tox.ini b/tox.ini
index 07ca0c5e3dce8d056f5d370cd26090f266d23d6b..d80f7275a8e072d2ce345170331fd13dded2f08e 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -23,14 +23,6 @@ envlist =
 
 [testenv]
 basepython =
-           py3: python3
-           py39: python3.9
-           py310: python3.10
-           py311: python3.11
-           py312: python3.12
-           py313: python3.13
-           py314: python3.14
-           pypy3: pypy3
            # In theory, it doesn't matter which python version is used here.
            # In practice, things like changes to the ast module can alter
            # the outputs of the tools (especially where exactly the
@@ -61,7 +53,7 @@ setenv =
        # during sdist installation (and it doesn't seem to be
        # possible to set environment variables during that phase of
        # tox).
-       {py3,py39,py310,py311,py312,py313,py314,pypy3}: PYTHONWARNINGS=error:::tornado
+       PYTHONWARNINGS=error:::tornado
        # Warn if we try to open a file with an unspecified encoding.
        # (New in python 3.10, becomes obsolete when utf8 becomes the
        # default in 3.15)