app_deploy: don't update pip
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
parent
13591d0a5b
commit
de796a9ec7
|
@ -252,9 +252,9 @@ class AppDeploy(BaseDeploy):
|
||||||
self.notify_status("Updating python packages...")
|
self.notify_status("Updating python packages...")
|
||||||
try:
|
try:
|
||||||
# First attempt to update pip
|
# First attempt to update pip
|
||||||
await self.cmd_helper.run_cmd(
|
# await self.cmd_helper.run_cmd(
|
||||||
f"{self.pip_exe} install -U pip", timeout=1200., notify=True,
|
# f"{self.pip_exe} install -U pip", timeout=1200., notify=True,
|
||||||
retries=3)
|
# retries=3)
|
||||||
await self.cmd_helper.run_cmd(
|
await self.cmd_helper.run_cmd(
|
||||||
f"{self.pip_exe} install {args}", timeout=1200., notify=True,
|
f"{self.pip_exe} install {args}", timeout=1200., notify=True,
|
||||||
retries=3)
|
retries=3)
|
||||||
|
|
Loading…
Reference in New Issue