From 7640b8c37a0e2612808c99367a45e1c1f1d97ab5 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Wed, 14 Jun 2023 21:31:32 -0400 Subject: [PATCH] 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 --- .github/workflows/test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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. -- 2.47.2