From ae8e3b0838505843da7c8329f4a604b8042460cc Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Fri, 17 Oct 2025 17:12:20 +0100 Subject: [PATCH] Add support for Python 3.14 --- .github/workflows/ci.yml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ce94133..98f3fbd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: fail-fast: false matrix: os: [windows-latest, macos-latest, ubuntu-latest] - python-version: ["3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] django-version: ["4.2", "5.0", "5.1", "5.2", "6.0a1"] exclude: - django-version: "6.0a1" diff --git a/pyproject.toml b/pyproject.toml index b81fada..c791897 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Programming Language :: Python :: Implementation :: CPython", "Environment :: Web Environment", "Framework :: Django",