]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
ci: Re-enable Python 3.12 alphas
authorBen Darnell <ben@bendarnell.com>
Wed, 8 Feb 2023 17:47:27 +0000 (17:47 +0000)
committerBen Darnell <ben@bendarnell.com>
Wed, 8 Feb 2023 21:21:14 +0000 (21:21 +0000)
As of 3.12a5 the deprecation warnings should be in their final
state.

Also update setup-python action to silence a warning.

.github/workflows/build.yml
.github/workflows/test.yml

index 3f56564249afcd8f0fbb922f73755f87e5c9658e..8734328f4fbd5d8d2aeb49550c4994d91d3bb199 100644 (file)
@@ -23,7 +23,7 @@ jobs:
     runs-on: ubuntu-20.04
     steps:
       - uses: actions/checkout@v3
-      - uses: actions/setup-python@v3
+      - uses: actions/setup-python@v4
         name: Install Python
         with:
           python-version: ${{ env.python-version }}
@@ -47,7 +47,7 @@ jobs:
 
     steps:
       - uses: actions/checkout@v3
-      - uses: actions/setup-python@v3
+      - uses: actions/setup-python@v4
         name: Install Python
         with:
           python-version: ${{ env.python-version }}
index 21fd213d1bf920318caa991e7488e4c600cf79d4..997ed1183ad2255337a6d92bd650860e9a404a60 100644 (file)
@@ -18,7 +18,7 @@ jobs:
     runs-on: ubuntu-20.04
     steps:
       - uses: actions/checkout@v3
-      - uses: actions/setup-python@v3
+      - uses: actions/setup-python@v4
         name: Install Python
         with:
           # Lint python version must be synced with tox.ini
@@ -44,10 +44,8 @@ jobs:
             tox_env: py310-full
           - python: '3.11'
             tox_env: py311-full
-          # Need more work for python 3.12. See
-          # https://github.com/python/cpython/issues/93453
-          #- python: '3.12.0-alpha - 3.12'
-          #  tox_env: py312-full
+          - python: '3.12.0-alpha - 3.12'
+            tox_env: py312-full
           - python: 'pypy-3.8'
             # Pypy is a lot slower due to jit warmup costs, so don't run the
             # "full" test config there.
@@ -58,7 +56,7 @@ jobs:
 
     steps:
       - uses: actions/checkout@v3
-      - uses: actions/setup-python@v3
+      - uses: actions/setup-python@v4
         name: Install Python
         with:
           python-version: ${{ matrix.python}}