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}