Skip to content

Commit 7dad9f1

Browse files
committed
chore: ensure list in noxfile is made using correct quote types
1 parent 1f81f10 commit 7dad9f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

{{cookiecutter.project_name}}/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
nox.options.default_venv_backend = "uv"
1616
os.environ.setdefault("PYO3_USE_ABI3_FORWARD_COMPATIBILITY", "1")
1717

18-
PYTHON_VERSIONS: List[str] = {{cookiecutter.python_versions}}
18+
PYTHON_VERSIONS: List[str] = {{cookiecutter.python_versions | replace("'", '"')}}
1919
DEFAULT_PYTHON_VERSION: str = PYTHON_VERSIONS[-1]
2020

2121
REPO_ROOT: Path = Path(__file__).parent.resolve()

0 commit comments

Comments
 (0)