diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml
index fc2681b..07dfffe 100644
--- a/.github/workflows/integration.yml
+++ b/.github/workflows/integration.yml
@@ -20,7 +20,7 @@ jobs:
           # - '3.7'
           # - '3.8'
           - '3.9'
-          - '3.10-dev'
+          - '3.10'
           - 'pypy3'
 
     steps:
@@ -49,7 +49,7 @@ jobs:
       # Disabled against Pypy (see python/typed_ast#111).
       # Currently disabled against Python 3.10.
       - name: Lint source code against Mypy
-        if: ${{ matrix.python-version != 'pypy3' && matrix.python-version != '3.10-dev' }}
+        if: ${{ matrix.python-version != 'pypy3' && matrix.python-version != '3.10' }}
         run: |
           pip install mypy
           mypy archey/
@@ -79,9 +79,8 @@ jobs:
           rm dist/archey
 
       # Disabled against PyPy (see <https://stackoverflow.com/a/22245203>).
-      # Currently disabled against Python 3.10 (see pyinstaller/pyinstaller#5693).
       - name: Standalone building (with PyInstaller)
-        if: ${{ matrix.python-version != 'pypy3' && matrix.python-version != '3.10-dev' }}
+        if: ${{ matrix.python-version != 'pypy3' }}
         run: |
           pyinstaller \
             --distpath dist \