From 99a752a6e7fbfca8835f9c3df75ff696d33ea56b Mon Sep 17 00:00:00 2001 From: Oscar Reimer Date: Wed, 22 Nov 2023 12:36:02 +0100 Subject: [PATCH] Revert "Use dry run for pip instead of actually installing packages for speed up and increased compatibility" This reverts commit b5b376186a33ca815fca803c1b48af45200e5883. --- internal/resolution/pm/pip/cmd_factory.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/resolution/pm/pip/cmd_factory.go b/internal/resolution/pm/pip/cmd_factory.go index 9b371280..1fdf4904 100644 --- a/internal/resolution/pm/pip/cmd_factory.go +++ b/internal/resolution/pm/pip/cmd_factory.go @@ -58,7 +58,7 @@ func (cmdf CmdFactory) MakeInstallCmd(command string, file string) (*exec.Cmd, e return &exec.Cmd{ Path: path, - Args: []string{command, "install", "--dry-run", "-r", file}, + Args: []string{command, "install", "-r", file}, }, err }