Skip to content

Commit

Permalink
Change --no-pip to --without-pip
Browse files Browse the repository at this point in the history
  • Loading branch information
dukecat0 committed Sep 26, 2024
1 parent c334237 commit 6384801
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pipx/venv.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def create_venv(self, venv_args: List[str], pip_args: List[str], override_shared
elif self.backend == "virtualenv":
cmd = [path_to_exec("virtualenv"), "--python", self.python]
if not override_shared:
cmd.append("--no-pip")
cmd.append("--without-pip")
venv_process = run_subprocess(cmd + venv_args + [str(self.root)], run_dir=str(self.root))
subprocess_post_check(venv_process)
if self.backend != "uv" or self.installer != "uv":
Expand Down

0 comments on commit 6384801

Please sign in to comment.