Skip to content

Commit ecc40b3

Browse files
committed
Add support for python 3.14 to copier template
1 parent 1dfadc8 commit ecc40b3

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

template/pyproject.toml.jinja

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ classifiers = [
1010
"Programming Language :: Python :: 3.11",
1111
"Programming Language :: Python :: 3.12",
1212
"Programming Language :: Python :: 3.13",
13+
"Programming Language :: Python :: 3.14",
1314
]
1415
description = "{{ description }}"
1516
dependencies = [] # Add project dependencies here, e.g. ["click", "numpy"]

template/{% if git_platform=="github.com" %}.github{% endif %}/workflows/ci.yml.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
matrix:
2121
runs-on: ["ubuntu-latest"] # can add windows-latest, macos-latest
22-
python-version: ["3.11", "3.12", "3.13"]
22+
python-version: ["3.11", "3.12", "3.13", "3.14"]
2323
fail-fast: false
2424
uses: ./.github/workflows/_test.yml
2525
with:

0 commit comments

Comments
 (0)