From 21986c3fc9791cac0ad81ee87613e4dcdc72fd95 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Tue, 10 Jun 2025 16:54:42 -0500 Subject: [PATCH] Bump timeout on Python download release fetch (#13955) Failing with a 504 at https://github.com/astral-sh/uv/actions/runs/15569590779 Successful at https://github.com/astral-sh/uv/actions/runs/15570896150/job/43846260252 --- crates/uv-python/fetch-download-metadata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv-python/fetch-download-metadata.py b/crates/uv-python/fetch-download-metadata.py index f3976ee5f..0b5d9caec 100755 --- a/crates/uv-python/fetch-download-metadata.py +++ b/crates/uv-python/fetch-download-metadata.py @@ -729,7 +729,7 @@ async def find() -> None: } if token: headers["Authorization"] = "Bearer " + token - client = httpx.AsyncClient(follow_redirects=True, headers=headers, timeout=15) + client = httpx.AsyncClient(follow_redirects=True, headers=headers, timeout=60) finders = [ CPythonFinder(client),