From 83ab16bfe4ab4a99dacf0f169e26f9f474ef1b1b Mon Sep 17 00:00:00 2001 From: Olivia Lynn Date: Wed, 19 Nov 2025 13:28:32 -0500 Subject: [PATCH 1/6] Update Python version notation in documentation --- docs/source/template_options.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/template_options.rst b/docs/source/template_options.rst index 6ede314..2936212 100644 --- a/docs/source/template_options.rst +++ b/docs/source/template_options.rst @@ -131,7 +131,7 @@ The license type you want to use for this project. | Options | 3.8 (end-of-life), **✱ 3.9**, | | | **✱ 3.9**, **✱ 3.10**, | | | **✱ 3.11**, **✱ 3.12**, | - | | 3.13 | + | | **✱ 3.13** | +------------+----------------------------------------------------+ Select all versions of python that you are targeting for execution. From 3afa47d1d0a701eee977ab2466a7681ca32b75e5 Mon Sep 17 00:00:00 2001 From: Olivia Lynn Date: Wed, 19 Nov 2025 13:30:39 -0500 Subject: [PATCH 2/6] Remove duplicate 3.9 in python version section --- docs/source/template_options.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/template_options.rst b/docs/source/template_options.rst index 2936212..be8c0e6 100644 --- a/docs/source/template_options.rst +++ b/docs/source/template_options.rst @@ -128,7 +128,7 @@ The license type you want to use for this project. +------------+----------------------------------------------------+ | Question | What versions of Python will your project support? | +------------+----------------------------------------------------+ - | Options | 3.8 (end-of-life), **✱ 3.9**, | + | Options | 3.8 (end-of-life), | | | **✱ 3.9**, **✱ 3.10**, | | | **✱ 3.11**, **✱ 3.12**, | | | **✱ 3.13** | From d290ffd5f9da1a79ff711573ca041493cf8b8a20 Mon Sep 17 00:00:00 2001 From: Olivia Lynn Date: Wed, 19 Nov 2025 13:35:39 -0500 Subject: [PATCH 3/6] Update supported Python versions in documentation --- docs/source/template_options.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/source/template_options.rst b/docs/source/template_options.rst index be8c0e6..4ea0f13 100644 --- a/docs/source/template_options.rst +++ b/docs/source/template_options.rst @@ -128,8 +128,7 @@ The license type you want to use for this project. +------------+----------------------------------------------------+ | Question | What versions of Python will your project support? | +------------+----------------------------------------------------+ - | Options | 3.8 (end-of-life), | - | | **✱ 3.9**, **✱ 3.10**, | + | Options | 3.9 (end-of-life), **✱ 3.10**, | | | **✱ 3.11**, **✱ 3.12**, | | | **✱ 3.13** | +------------+----------------------------------------------------+ From eb8c00fd1969ef198861d536bc11480451c310a0 Mon Sep 17 00:00:00 2001 From: Olivia Lynn Date: Wed, 19 Nov 2025 13:39:04 -0500 Subject: [PATCH 4/6] Remove python 3.8 from copier questions (and mark 3.8 as EOL) --- copier.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/copier.yml b/copier.yml index 25a97a3..1786ff3 100644 --- a/copier.yml +++ b/copier.yml @@ -64,12 +64,11 @@ project_license: python_versions: help: What versions of python are you targeting? We will add automated testing for these versions. - default: ["3.9", "3.10", "3.11", "3.12", "3.13"] + default: ["3.10", "3.11", "3.12", "3.13"] type: str multiselect: true choices: - "3.8 (end-of-life)": "3.8" - "3.9": "3.9" + "3.9 (end-of-life)": "3.9" "3.10": "3.10" "3.11": "3.11" "3.12": "3.12" From bef9b26edccd647a5e6d078d70c261e0a1319d47 Mon Sep 17 00:00:00 2001 From: Olivia Lynn Date: Wed, 19 Nov 2025 14:20:40 -0500 Subject: [PATCH 5/6] Add support for Python version 3.14 in copier.yml --- copier.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/copier.yml b/copier.yml index 1786ff3..14b78a5 100644 --- a/copier.yml +++ b/copier.yml @@ -73,6 +73,7 @@ python_versions: "3.11": "3.11" "3.12": "3.12" "3.13": "3.13" + "3.14": "3.14" when: "{{ custom_install }}" enforce_style: From 87e6fefa8b665a6deb341fa596ddaaaab9d77aeb Mon Sep 17 00:00:00 2001 From: Olivia Lynn Date: Wed, 19 Nov 2025 14:21:12 -0500 Subject: [PATCH 6/6] Update template_options.rst --- docs/source/template_options.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/template_options.rst b/docs/source/template_options.rst index 4ea0f13..a0398fd 100644 --- a/docs/source/template_options.rst +++ b/docs/source/template_options.rst @@ -130,7 +130,7 @@ The license type you want to use for this project. +------------+----------------------------------------------------+ | Options | 3.9 (end-of-life), **✱ 3.10**, | | | **✱ 3.11**, **✱ 3.12**, | - | | **✱ 3.13** | + | | **✱ 3.13**, 3.14 | +------------+----------------------------------------------------+ Select all versions of python that you are targeting for execution.