Skip to content

Commit 96d54d9

Browse files
committed
Changed the type of the parameter minimum_python_version, adjusted the code
1 parent 63a6922 commit 96d54d9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

copier.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ keywords:
5151
python_versions:
5252
when: false
5353
type: yaml
54-
default: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
54+
default: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
5555

5656
minimum_python_version:
57-
type: yaml
57+
type: str
5858
help: "The minimum Python version required"
5959
choices: >
6060
{% for v in python_versions %}
61-
- "'{{ v }}'"
61+
- "{{ v }}"
6262
{% endfor %}
6363
6464
_subdirectory: "template"

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def copier_project_defaults():
77
"project_long_description": "my_project_description",
88
"project_getting_started": "This is how to get started.",
99
"git_username": "pyfar",
10-
"minimum_python_version": "'3.11'",
10+
"minimum_python_version": "3.11",
1111
"license": "MIT",
1212
"copyright_statement": "2025, The pyfar developers",
1313
"project_short_description": "my_project_short_description",

0 commit comments

Comments
 (0)