Skip to content

Commit 6384801

Browse files
committed
Change --no-pip to --without-pip
1 parent c334237 commit 6384801

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pipx/venv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def create_venv(self, venv_args: List[str], pip_args: List[str], override_shared
195195
elif self.backend == "virtualenv":
196196
cmd = [path_to_exec("virtualenv"), "--python", self.python]
197197
if not override_shared:
198-
cmd.append("--no-pip")
198+
cmd.append("--without-pip")
199199
venv_process = run_subprocess(cmd + venv_args + [str(self.root)], run_dir=str(self.root))
200200
subprocess_post_check(venv_process)
201201
if self.backend != "uv" or self.installer != "uv":

0 commit comments

Comments
 (0)