From: Ben Darnell Date: Thu, 15 Jun 2023 01:31:32 +0000 (-0400) Subject: ci: Disable Python 3.12 in CI X-Git-Tag: v6.4.0b1~30^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7640b8c37a0e2612808c99367a45e1c1f1d97ab5;p=thirdparty%2Ftornado.git ci: Disable Python 3.12 in CI Current betas have a bug in GzipFile we can't easily work around. https://github.com/python/cpython/issues/105808 --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ff38e6652..94be6fe98 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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.