From 65304d9cbceb698732279fb336af614226056275 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 22 Oct 2025 07:49:29 +0200 Subject: [PATCH] GitHub Actions: Add Python 3.14 and 3.14t to the testing https://www.python.org/downloads/release/python-3140/ https://py-free-threading.github.io/porting --- .github/workflows/tests.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 76e0a0c..570be84 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -13,9 +13,11 @@ jobs: fail-fast: false matrix: include: + - {python: '3.14t'} + - {python: '3.14'} + - {name: Windows, python: '3.14', os: windows-latest} + - {name: Mac, python: '3.14', os: macos-latest} - {python: '3.13'} - - {name: Windows, python: '3.13', os: windows-latest} - - {name: Mac, python: '3.13', os: macos-latest} - {python: '3.12'} - {python: '3.11'} - {python: '3.10'}