app_deploy: don't update pip

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan 2022-01-30 12:14:09 -05:00
parent 13591d0a5b
commit de796a9ec7
1 changed files with 3 additions and 3 deletions

View File

@ -252,9 +252,9 @@ class AppDeploy(BaseDeploy):
self.notify_status("Updating python packages...")
try:
# First attempt to update pip
await self.cmd_helper.run_cmd(
f"{self.pip_exe} install -U pip", timeout=1200., notify=True,
retries=3)
# await self.cmd_helper.run_cmd(
# f"{self.pip_exe} install -U pip", timeout=1200., notify=True,
# retries=3)
await self.cmd_helper.run_cmd(
f"{self.pip_exe} install {args}", timeout=1200., notify=True,
retries=3)