From: Ben Darnell Date: Sun, 30 Jan 2022 20:01:14 +0000 (-0500) Subject: build: Add python 3.11 alphas to CI X-Git-Tag: v6.2.0b1~26^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F3105%2Fhead;p=thirdparty%2Ftornado.git build: Add python 3.11 alphas to CI Updates #3077 --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f41494303..0387ac292 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -44,6 +44,8 @@ jobs: tox_env: py39-full - python: '3.10' tox_env: py310-full + - python: '3.11.0-alpha - 3.11' + tox_env: py311-full - python: 'pypy-3.8' # Pypy is a lot slower due to jit warmup costs, so don't run the # "full" test config there. diff --git a/tox.ini b/tox.ini index 56e01a810..6a7d4ce85 100644 --- a/tox.ini +++ b/tox.ini @@ -31,6 +31,7 @@ basepython = py38: python3.8 py39: python3.9 py310: python3.10 + py311: python3.11 pypy3: pypy3 # In theory, it doesn't matter which python version is used here. # In practice, things like changes to the ast module can alter