Introduce retry logic, Install before the imports

This commit is contained in:
henryruhs
2025-07-03 16:16:17 +02:00
parent 5464f4c3de
commit 620910097b
4 changed files with 9 additions and 4 deletions
+2 -1
View File
@@ -3,4 +3,5 @@ from shutil import which
def install() -> None:
subprocess.run([ which('pip'), 'install', '-r', 'requirements.txt', '-q' ])
subprocess.run([ which('pip'), 'install', 'httpx==0.28.1', '-q' ])
subprocess.run([ which('pip'), 'install', 'httpx-retries==0.4.0', '-q' ])