@@ -223,7 +223,7 @@ def install_python_deps(python_exe, external_uv_executable):
223
223
[external_uv_executable , "pip" , "install" , "uv>=0.1.0" , f"--python={ python_exe } " , "--quiet" ],
224
224
stdout = subprocess .DEVNULL ,
225
225
stderr = subprocess .STDOUT ,
226
- timeout = 120
226
+ timeout = 300
227
227
)
228
228
except subprocess .CalledProcessError as e :
229
229
print (f"Error: uv installation failed with exit code { e .returncode } " )
@@ -244,7 +244,7 @@ def install_python_deps(python_exe, external_uv_executable):
244
244
[python_exe , "-m" , "pip" , "install" , "uv>=0.1.0" , "--quiet" ],
245
245
stdout = subprocess .DEVNULL ,
246
246
stderr = subprocess .STDOUT ,
247
- timeout = 120
247
+ timeout = 300
248
248
)
249
249
except subprocess .CalledProcessError as e :
250
250
print (f"Error: uv installation via pip failed with exit code { e .returncode } " )
@@ -275,7 +275,7 @@ def _get_installed_uv_packages():
275
275
capture_output = True ,
276
276
text = True ,
277
277
encoding = 'utf-8' ,
278
- timeout = 120
278
+ timeout = 300
279
279
)
280
280
281
281
if result_obj .returncode == 0 :
@@ -323,7 +323,7 @@ def _get_installed_uv_packages():
323
323
cmd ,
324
324
stdout = subprocess .DEVNULL ,
325
325
stderr = subprocess .STDOUT ,
326
- timeout = 120
326
+ timeout = 300
327
327
)
328
328
329
329
except subprocess .CalledProcessError as e :
0 commit comments