From 905ec4331e4fcbd2651a1a0f0369cf38beb73d88 Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Thu, 4 Dec 2025 17:25:57 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7(action)=20add=20python=203.14=20in?= =?UTF-8?q?=20tests=20suite?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We want to test the library with python 3.14. We update the tox.ini confiration file and add python 3.14 to the test-back matric. --- .github/workflows/tests.yml | 1 + pyproject.toml | 1 + tox.ini | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 01704ce..5f0b192 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -84,6 +84,7 @@ jobs: - "3.11" - "3.12" - "3.13" + - "3.14" steps: - uses: actions/checkout@v5 diff --git a/pyproject.toml b/pyproject.toml index 58fc208..fe83ccd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,6 +25,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] dependencies = [ "django>=5.0", diff --git a/tox.ini b/tox.ini index cf53a44..5c1169a 100644 --- a/tox.ini +++ b/tox.ini @@ -2,11 +2,12 @@ requires = tox>=4.11.4 tox-uv>=0.0.4 -envlist = py{311,312,313}-django{42,50,51,52} +envlist = py{311,312,313,314}-django{42,50,51,52} isolated_build = True [gh] python = + 3.14 = py314-django{52} 3.13 = py313-django{42,50,51,52} 3.12 = py312-django{42,50,51,52} 3.11 = py311-django{42,50,51,52}