From 2596388d2e1c52b17beded9e452a5c2fe8147858 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 8 Oct 2025 11:28:53 +0200 Subject: [PATCH] GitHub Actions check: Add Python 3.14t --- .github/workflows/check.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index 432b9cf4f..6da53371e 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -23,6 +23,7 @@ jobs: fail-fast: false matrix: py: + - "3.14t" - "3.14" - "3.13" - "3.12" @@ -89,7 +90,7 @@ jobs: shell: bash run: echo "$USERPROFILE/.local/bin" >> $GITHUB_PATH - name: Install tox@self - run: uv tool install --python-preference only-managed --python 3.13 tox@. + run: uv tool install --python-preference only-managed --python 3.14t tox@. - name: Setup check suite run: tox r -vv --notest --skip-missing-interpreters false -e ${{ matrix.tox_env }} - name: Run check for ${{ matrix.tox_env }}