We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f48e77f commit 8c7af52Copy full SHA for 8c7af52
repo_scaffold/templates/template-python/hooks/post_gen_project.py
@@ -112,7 +112,7 @@ def setup_environment(self) -> None:
112
113
try:
114
print("Installing project dependencies...")
115
- subprocess.run(["task", "init"], check=True)
+ subprocess.run(["uv", "sync"], check=True)
116
print("✅ Dependencies installed successfully")
117
except subprocess.CalledProcessError as e:
118
print(f"❌ Failed to install dependencies: {e}")
0 commit comments