From 9e78bda3c3b57e0453740415269b348d76df0ae5 Mon Sep 17 00:00:00 2001 From: Stefan VanBuren Date: Wed, 8 Oct 2025 09:12:03 -0400 Subject: [PATCH] Support Python 3.14 Signed-off-by: Stefan VanBuren --- .github/workflows/ci.yaml | 10 +++++----- pyproject.toml | 1 + 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 729cf44..061f9f6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -28,7 +28,7 @@ jobs: - windows-2025 python: - "3.10" - - "3.13" + - "3.14" coverage: - "nocov" # Test oldest and newest on all OS's, but others only on one @@ -42,14 +42,14 @@ jobs: python: "3.12" coverage: "nocov" resolution: "lowest-direct" - # Enable coverage on just one job - os: ubuntu-24.04 python: "3.13" - coverage: "cov" + coverage: "nocov" resolution: "lowest-direct" + # Enable coverage on just one job - os: ubuntu-24.04 - python: "3.14.0-rc.2" - coverage: "nocov" + python: "3.14" + coverage: "cov" resolution: "lowest-direct" env: # Shared env variables for all the tests diff --git a/pyproject.toml b/pyproject.toml index 2d3dcb9..bc49d68 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,6 +23,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Internet :: WWW/HTTP", "Topic :: Software Development :: Libraries :: Python Modules", "Typing :: Typed",