Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
- ubuntu-latest
- windows-latest
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"

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_username": "{{cookiecutter.author_given_names.lower().replace(' ', '-')}}-{{cookiecutter.author_family_names.lower().replace(' ', '-')}}",
"min_python_version": ["3.10", "3.11", "3.12"],
"max_python_version": ["3.12", "3.11", "3.10"],
"min_python_version": ["3.11", "3.12", "3.13"],
"max_python_version": ["3.13", "3.12", "3.11"],
"license": ["MIT", "BSD-3", "GPL-3.0"],
"funder": "",
"__prompts__": {
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ overrides."tool.coverage.paths.source".inline_arrays = false
legacy_tox_ini = """
[gh-actions]
python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313

[gh-actions:env]
OS =
Expand All @@ -64,5 +64,5 @@ legacy_tox_ini = """
pytest {posargs}

[tox]
env_list = py3{9,10,11,12}-{linux,macos,windows}
env_list = py3{11,12,13}-{linux,macos,windows}
"""