Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- "3.11"
- "3.12"
- "3.13"
- "3.14"

steps:
- name: Checkout source
Expand Down
4 changes: 2 additions & 2 deletions cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"initialise_git_repository": true,
"deploy_docs_to_github_pages": true,
"github_owner": "{{cookiecutter.author_given_names.lower().replace(' ', '-')}}-{{cookiecutter.author_family_names.lower().replace(' ', '-')}}",
"min_python_version": ["3.11", "3.12", "3.13"],
"max_python_version": ["3.13", "3.12", "3.11"],
"min_python_version": ["3.11", "3.12", "3.13", "3.14"],
"max_python_version": ["3.14", "3.13", "3.12", "3.11"],
"license": ["MIT", "BSD-3-Clause", "GPL-3.0"],
"funder": "",
"__repo_name": "{{cookiecutter.github_owner}}/{{cookiecutter.project_slug}}",
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ env_list = [
"py311",
"py312",
"py313",
"py314",
]
env_run_base = {commands = [
[
Expand All @@ -62,4 +63,6 @@ gh.python = {"3.11" = [
"py312",
], "3.13" = [
"py313",
], "3.14" = [
"py314",
]}
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
- "3.11"
- "3.12"
- "3.13"
- "3.14"

steps:
- name: Checkout source
Expand Down
2 changes: 1 addition & 1 deletion tests/data/test_package_generation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Centre for Advanced Research Computing, University College London

<!-- Any tools or versions of languages needed to run code. For example specific Python or Node versions. Minimum hardware requirements also go here. -->

`cookiecutter-test` requires Python 3.11&ndash;3.13.
`cookiecutter-test` requires Python 3.11&ndash;3.14.

### Installation

Expand Down
3 changes: 3 additions & 0 deletions tests/data/test_package_generation/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Typing :: Typed",
]
dependencies = [
Expand Down Expand Up @@ -123,6 +124,7 @@ env_list = [
"py311",
"py312",
"py313",
"py314",
]
env_run_base = {commands = [
[
Expand All @@ -145,3 +147,4 @@ env.docs = {commands = [
gh.python."3.11" = ["py311"]
gh.python."3.12" = ["py312"]
gh.python."3.13" = ["py313"]
gh.python."3.14" = ["py314"]