File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed
{{cookiecutter.project_name}} Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change 1414nox .options .default_venv_backend = "uv"
1515os .environ .setdefault ("PYO3_USE_ABI3_FORWARD_COMPATIBILITY" , "1" )
1616
17- # Logic that helps avoid metaprogramming in cookiecutter-robust-python
18- MIN_PYTHON_VERSION_SLUG : int = int ("{{cookiecutter.min_python_version}}" .lstrip ("3." ))
19- MAX_PYTHON_VERSION_SLUG : int = int ("{{cookiecutter.max_python_version}}" .lstrip ("3." ))
20-
21- PYTHON_VERSIONS : List [str ] = [
22- f"3.{ VERSION_SLUG } " for VERSION_SLUG in range (MIN_PYTHON_VERSION_SLUG , MAX_PYTHON_VERSION_SLUG + 1 )
23- ]
17+ PYTHON_VERSIONS : List [str ] = {{cookiecutter .python_versions }}
2418DEFAULT_PYTHON_VERSION : str = PYTHON_VERSIONS [- 1 ]
2519
2620REPO_ROOT : Path = Path (__file__ ).parent .resolve ()
You can’t perform that action at this time.
0 commit comments