From 88f80564268b33662344bbc86b5164f496fed7df Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 17 Sep 2025 10:08:07 +0200 Subject: [PATCH 1/2] GitHub Actions: Test on Python 3.14 release candidate 2 Python v3.14 -- October 7th * https://www.python.org/download/pre-releases * https://www.python.org/downloads/release/python-3140rc2 --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 838a4b51a..56dfb2841 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,6 +19,7 @@ jobs: - '3.11' - '3.12' - '3.13' + - '3.14' steps: - uses: actions/checkout@v5 @@ -26,6 +27,7 @@ jobs: - uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true cache: 'pip' cache-dependency-path: 'requirements/*.txt' From 6d87deb8e7ad77061d0cc5dd411dacf204459f16 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 17 Sep 2025 10:12:17 +0200 Subject: [PATCH 2/2] tox.ini: envlist {py314}-{django52,djangomain} --- tox.ini | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tox.ini b/tox.ini index 031dc4a5d..9eeb3d1d5 100644 --- a/tox.ini +++ b/tox.ini @@ -5,6 +5,7 @@ envlist = {py311}-{django42,django51,django52} {py312}-{django42,django51,django52,djangomain} {py313}-{django51,django52,djangomain} + {py314}-{django52,djangomain} base dist docs @@ -50,3 +51,6 @@ ignore_outcome = true [testenv:py313-djangomain] ignore_outcome = true + +[testenv:py314-djangomain] +ignore_outcome = true