forked from platypush/platypush
Removed -U
option from pip command when installing deps.
We don't need to forcefully upgrade packages that don't need to be upgraded.
This commit is contained in:
parent
869ef38364
commit
8817581061
1 changed files with 1 additions and 1 deletions
|
@ -467,7 +467,7 @@ class Dependencies:
|
||||||
deps = sorted(self.pip)
|
deps = sorted(self.pip)
|
||||||
if full_command:
|
if full_command:
|
||||||
yield (
|
yield (
|
||||||
'pip install -U --no-input '
|
'pip install --no-input '
|
||||||
+ ('--no-cache-dir ' if self._is_docker else '')
|
+ ('--no-cache-dir ' if self._is_docker else '')
|
||||||
+ (
|
+ (
|
||||||
'--break-system-packages '
|
'--break-system-packages '
|
||||||
|
|
Loading…
Reference in a new issue