From 129e622215faffae534c60b7859e2ce8e66e7f01 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Wed, 8 Feb 2023 21:28:02 +0000 Subject: [PATCH] ci: Add Python 3.10.8 and 3.11.0 to the build matrix Early releases in these two branches had different deprecation warnings so we want to test them too. --- .github/workflows/test.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 997ed1183..d9a6082dd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -42,8 +42,15 @@ jobs: tox_env: py39-full - python: '3.10' tox_env: py310-full + - python: '3.10.8' + # Early versions of 3.10 and 3.11 had different deprecation + # warnings in asyncio. Test with them too to make sure everything + # works the same way. + tox_env: py310-full - python: '3.11' tox_env: py311-full + - python: '3.11.0' + tox_env: py311-full - python: '3.12.0-alpha - 3.12' tox_env: py312-full - python: 'pypy-3.8' -- 2.47.2