Skip to content

Commit 8c0bc77

Browse files
committed
fix: temporarily remove for loops to find issue
1 parent 534838c commit 8c0bc77

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

hooks/pre_gen_project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
{{ cookiecutter.update({
99
"_min_python_version_minor_int": min_minor,
1010
"_max_python_version_minor_int": max_minor,
11-
"python_versions": ["3." + (i|string) for i in range(min_minor, max_minor + 1)]
11+
"python_versions": ["3.10", "3.11", "3.12", "3.13", "3.14"]
1212
}) }}
1313
"""

{{cookiecutter.project_name}}/pyproject.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ classifiers = [
1616
"Operating System :: OS Independent",
1717
"Programming Language :: Python :: 3",
1818
"Programming Language :: Python :: 3 :: Only",
19-
{%- for version in cookiecutter.python_versions %}
20-
"Programming Language :: Python :: {{ version }}",
21-
{%- endfor %}
2219
"{{ cookiecutter.development_status }}"
2320
]
2421
dependencies = [

0 commit comments

Comments
 (0)