fix: Update pip install command to use --upgrade-strategy only-if-needed

This commit is contained in:
Paul Gauthier 2024-09-27 10:34:09 -07:00 committed by Paul Gauthier (aider)
parent 0d55a51033
commit 8eed1b6ca5

View file

@ -217,7 +217,7 @@ def get_pip_install(args):
"pip", "pip",
"install", "install",
"--upgrade", "--upgrade",
"--ignore-installed", "--upgrade-strategy only-if-needed",
] ]
cmd += args cmd += args
return cmd return cmd