Removed `-U` option from pip command when installing deps.
continuous-integration/drone/push Build is passing Details

We don't need to forcefully upgrade packages that don't need to be
upgraded.
This commit is contained in:
Fabio Manganiello 2023-11-18 16:07:16 +01:00
parent 869ef38364
commit 8817581061
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 1 additions and 1 deletions

View File

@ -467,7 +467,7 @@ class Dependencies:
deps = sorted(self.pip)
if full_command:
yield (
'pip install -U --no-input '
'pip install --no-input '
+ ('--no-cache-dir ' if self._is_docker else '')
+ (
'--break-system-packages '