]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
ci: Skip python 3.12 for now 3208/head
authorBen Darnell <ben@bendarnell.com>
Fri, 16 Dec 2022 20:52:15 +0000 (15:52 -0500)
committerBen Darnell <ben@bendarnell.com>
Fri, 16 Dec 2022 21:16:02 +0000 (16:16 -0500)
The breaking changes begun by the deprecation warnings in 3.10 have
arrived, but according to https://github.com/python/cpython/issues/93453
the scope has changed somewhat (for the better, I think). Don't test
on 3.12 until we've adapted to the new plan.

.github/workflows/test.yml

index c372d32f2afbfae21a83709bdf4d85b568180123..f06794fb155fd297c6de5c9d4b62e6682cd61549 100644 (file)
@@ -44,8 +44,10 @@ jobs:
             tox_env: py310-full
           - python: '3.11'
             tox_env: py311-full
-          - python: '3.12.0-alpha - 3.12'
-            tox_env: py312-full
+          # Need more work for python 3.12. See
+          # https://github.com/python/cpython/issues/93453
+          #- python: '3.12.0-alpha - 3.12'
+          #  tox_env: py312-full
           - python: 'pypy-3.8'
             # Pypy is a lot slower due to jit warmup costs, so don't run the
             # "full" test config there.