]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
ci: Add Python 3.10.8 and 3.11.0 to the build matrix 3230/head
authorBen Darnell <ben@bendarnell.com>
Wed, 8 Feb 2023 21:28:02 +0000 (21:28 +0000)
committerBen Darnell <ben@bendarnell.com>
Wed, 8 Feb 2023 21:28:02 +0000 (21:28 +0000)
Early releases in these two branches had different deprecation warnings
so we want to test them too.

.github/workflows/test.yml

index 997ed1183ad2255337a6d92bd650860e9a404a60..d9a6082dd0ac0afc782b5fe3c5e31bfd10f0723c 100644 (file)
@@ -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'