Skip to content

Commit aed03d7

Browse files
authored
feat: Add support for python 3.14 to copier template (#341)
Addresses #315 Updates python-copier-template to add python 3.14 to the template. As discussed in the issue, support for the existing 3.11 oldest python version is retained to increase the number of supported pythons to 4 versions.
1 parent 1dfadc8 commit aed03d7

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)