]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
ci: Disable Python 3.12 in CI 3280/head
authorBen Darnell <ben@bendarnell.com>
Thu, 15 Jun 2023 01:31:32 +0000 (21:31 -0400)
committerBen Darnell <ben@bendarnell.com>
Thu, 15 Jun 2023 01:31:32 +0000 (21:31 -0400)
Current betas have a bug in GzipFile we can't easily work around.
https://github.com/python/cpython/issues/105808

.github/workflows/test.yml

index ff38e665200935a6b28c6d37979f5c665cd946ca..94be6fe9856ce88997ba4993895f75a5842d725c 100644 (file)
@@ -51,8 +51,9 @@ jobs:
             tox_env: py311-full
           - python: '3.11.0'
             tox_env: py311-full
-          - python: '3.12.0-alpha - 3.12'
-            tox_env: py312-full
+          # 3.12 is disabled until https://github.com/python/cpython/issues/105808 is fixed
+          #- 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.