From c8bba36154a99fb0a66505f90832afe287e7f611 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 8 Oct 2025 15:16:45 +0200 Subject: [PATCH] GitHub Actions: Add free threaded Python 3.14t --- .github/workflows/test.yml | 2 +- tox.ini | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3185341..21d356e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14', '3.14t'] steps: - uses: actions/checkout@v5 diff --git a/tox.ini b/tox.ini index 2660218..ce8f44c 100644 --- a/tox.ini +++ b/tox.ini @@ -4,11 +4,13 @@ envlist = py{310,311,312}-dj50 py{310,311,312}-dj51 py{310,311,312,313,314}-dj52 - py{312,313,314}-dj60 - py{312,313,314}-djmain + py{312,313,314,314t}-dj60 + py{312,313,314,314t}-djmain skipsdist = True +skip_missing_interpreters = True + [testenv] deps = dj42: Django==4.2 @@ -36,4 +38,4 @@ python = 3.11: py311 3.12: py312 3.13: py313 - 3.14: py314 + 3.14: py314, py314t