Skip to content

Commit

Permalink
Fix adding Django
Browse files Browse the repository at this point in the history
  • Loading branch information
epicserve committed Oct 19, 2024
1 parent 6350c0d commit 7f0a5d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dj_beat_drop/new.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def create_new_project(
os.chdir(project_dir)
os.system("uv init") # noqa: S605, S607
os.system("rm hello.py") # noqa: S605, S607
os.system(f"uv add django~='{minor_version}'") # noqa: S605
os.system(f"uv add 'django~={minor_version}'") # noqa: S605
if initialize_env is True:
os.system("uv add environs[django]") # noqa: S605, S607
os.system("uv run manage.py migrate") # noqa: S605, S607
Expand Down

0 comments on commit 7f0a5d3

Please sign in to comment.