diff --git a/repo_scaffold/templates/template-python/hooks/post_gen_project.py b/repo_scaffold/templates/template-python/hooks/post_gen_project.py index 93898c4..eaa6214 100644 --- a/repo_scaffold/templates/template-python/hooks/post_gen_project.py +++ b/repo_scaffold/templates/template-python/hooks/post_gen_project.py @@ -112,7 +112,7 @@ def setup_environment(self) -> None: try: print("Installing project dependencies...") - subprocess.run(["task", "init"], check=True) + subprocess.run(["uv", "sync"], check=True) print("✅ Dependencies installed successfully") except subprocess.CalledProcessError as e: print(f"❌ Failed to install dependencies: {e}")