Skip to content

Commit c1b3faf

Browse files
committed
Fix python3.11 in printed nox example
The suggested example printed after cookiecutter setup requires python3.11. Signed-off-by: cwasicki <[email protected]>
1 parent 3c37126 commit c1b3faf

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

cookiecutter/hooks/post_gen_project.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ def main() -> None:
6161
)
6262
print()
6363
print(f"cd {cookiecutter.github_repo_name}")
64+
print("# Requires at least python version 3.11")
6465
print("python3 -m venv .venv")
6566
print(". .venv/bin/activate")
6667
print("pip install .[dev-noxfile]")

0 commit comments

Comments
 (0)