From: Ben Darnell Date: Wed, 8 Feb 2023 21:28:02 +0000 (+0000) Subject: ci: Add Python 3.10.8 and 3.11.0 to the build matrix X-Git-Tag: v6.3.0b1~10^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F3230%2Fhead;p=thirdparty%2Ftornado.git 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. --- 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'