@@ -14,7 +14,7 @@ description = "{{ package_description }}"
1414license = "{{ license }}"
1515license-files = ["LICEN[CS]E.*"]
1616readme = "README.md"
17- requires-python = ">=3.{{ python_minor }}"
17+ requires-python = ">=3.{{ python_min }}"
1818authors = [
1919 {name = "{{ user_name }}", email = "{{ user_email }}"}
2020]
@@ -32,22 +32,22 @@ classifiers = [
3232 "Programming Language :: Python",
3333 "Programming Language :: Python :: 3",
3434 "Programming Language :: Python :: 3 :: Only",
35- {% - if python_minor <= 9 %}
35+ {% - if python_min <= 9 %}
3636 "Programming Language :: Python :: 3.9",
3737{% - endif %}
38- {% - if python_minor <= 10 %}
38+ {% - if python_min <= 10 %}
3939 "Programming Language :: Python :: 3.10",
4040{% - endif %}
41- {% - if python_minor <= 11 %}
41+ {% - if python_min <= 11 %}
4242 "Programming Language :: Python :: 3.11",
4343{% - endif %}
44- {% - if python_minor <= 12 %}
44+ {% - if python_min <= 12 %}
4545 "Programming Language :: Python :: 3.12",
4646{% - endif %}
47- {% - if python_minor <= 13 %}
47+ {% - if python_min <= 13 %}
4848 "Programming Language :: Python :: 3.13",
4949{% - endif %}
50- {% - if python_minor <= 14 %}
50+ {% - if python_min <= 14 %}
5151 "Programming Language :: Python :: 3.14",
5252{% - endif %}
5353 "Typing :: Typed",
@@ -177,7 +177,7 @@ mypy_path = "stubs"
177177# verify the config file
178178warn_unused_configs = true
179179# set the platform
180- python_version = "3.{{ python_minor }}"
180+ python_version = "3.{{ python_min }}"
181181# enable checks [last updated: mypy 1.15]
182182strict = true
183183disallow_any_explicit = true
@@ -267,7 +267,7 @@ flake8-comprehensions.allow-dict-calls-with-keyword-arguments = true
267267
268268
269269[tool.pylint]
270- py-version = "3.{{ python_minor }}"
270+ py-version = "3.{{ python_min }}"
271271{% - if get_package_version_from_vcs %}
272272ignore-paths = [".*/_version.py"]
273273{% - endif %}
0 commit comments