Skip to content

Commit

Permalink
Uups, allow creation also when requirements+pip.conf are used
Browse files Browse the repository at this point in the history
  • Loading branch information
jscheffl committed Nov 4, 2024
1 parent 1af8510 commit 928ef87
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def _is_uv_installed() -> bool:

def _generate_uv_cmd(tmp_dir: str, python_bin: str, system_site_packages: bool) -> list[str]:
"""Build the command to install the venv via UV."""
cmd = ["uv", "venv"]
cmd = ["uv", "venv", "--allow-existing", "--seed"]
if python_bin is not None:
cmd += ["--python", python_bin]
if system_site_packages:
Expand Down

0 comments on commit 928ef87

Please sign in to comment.