From: Ben Darnell Date: Fri, 16 Dec 2022 20:52:15 +0000 (-0500) Subject: ci: Skip python 3.12 for now X-Git-Tag: v6.3.0b1~19^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F3208%2Fhead;p=thirdparty%2Ftornado.git ci: Skip python 3.12 for now 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. --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c372d32f2..f06794fb1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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.