From fe71a31d03d07e332eb16ef08dc7c6667163e111 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Sun, 30 Jan 2022 15:01:14 -0500 Subject: [PATCH] build: Add python 3.11 alphas to CI Updates #3077 --- .github/workflows/test.yml | 2 ++ tox.ini | 1 + 2 files changed, 3 insertions(+) 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 -- 2.47.2