From 22c66ced7d25fad79f087d268b8bbec6d8df1459 Mon Sep 17 00:00:00 2001 From: Sam Cunliffe Date: Tue, 8 Oct 2024 14:27:09 +0100 Subject: [PATCH] Solves #457. --- .github/workflows/test.yml | 2 +- cookiecutter.json | 4 ++-- pyproject.toml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a16aff08..b10842e5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,9 +18,9 @@ jobs: - ubuntu-latest - windows-latest python-version: - - "3.10" - "3.11" - "3.12" + - "3.13" steps: - name: Checkout source diff --git a/cookiecutter.json b/cookiecutter.json index f2f96a20..97e8b5cb 100644 --- a/cookiecutter.json +++ b/cookiecutter.json @@ -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__": { diff --git a/pyproject.toml b/pyproject.toml index 59fb3f14..9ed875de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = @@ -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} """