Skip to content

Commit

Permalink
revert pip resolver change
Browse files Browse the repository at this point in the history
  • Loading branch information
emilwareus committed Oct 17, 2023
1 parent 20e3e86 commit 18ef92b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/resolution/pm/pip/cmd_factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func (cmdf CmdFactory) MakeCreateVenvCmd(fpath string) (*exec.Cmd, error) {

return &exec.Cmd{
Path: python,
Args: []string{pythonCommand, "-m", "venv", fpath, "--clear"}, //"--system-site-packages"
Args: []string{pythonCommand, "-m", "venv", fpath, "--clear", "--system-site-packages"},
}, nil
}

Expand Down

0 comments on commit 18ef92b

Please sign in to comment.