From ecc40b3811926b85544a32302ecf1288974ac36a Mon Sep 17 00:00:00 2001 From: Robert Tuck Date: Fri, 1 May 2026 16:20:51 +0100 Subject: [PATCH] Add support for python 3.14 to copier template --- template/pyproject.toml.jinja | 1 + .../workflows/ci.yml.jinja" | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/template/pyproject.toml.jinja b/template/pyproject.toml.jinja index d8ab2b1c..53452d53 100644 --- a/template/pyproject.toml.jinja +++ b/template/pyproject.toml.jinja @@ -10,6 +10,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] description = "{{ description }}" dependencies = [] # Add project dependencies here, e.g. ["click", "numpy"] diff --git "a/template/{% if git_platform==\"github.com\" %}.github{% endif %}/workflows/ci.yml.jinja" "b/template/{% if git_platform==\"github.com\" %}.github{% endif %}/workflows/ci.yml.jinja" index 47c95c59..4052f46d 100644 --- "a/template/{% if git_platform==\"github.com\" %}.github{% endif %}/workflows/ci.yml.jinja" +++ "b/template/{% if git_platform==\"github.com\" %}.github{% endif %}/workflows/ci.yml.jinja" @@ -19,7 +19,7 @@ jobs: strategy: matrix: runs-on: ["ubuntu-latest"] # can add windows-latest, macos-latest - python-version: ["3.11", "3.12", "3.13"] + python-version: ["3.11", "3.12", "3.13", "3.14"] fail-fast: false uses: ./.github/workflows/_test.yml with: