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
This commit is contained in:
Zanie Blue 2025-06-10 16:54:42 -05:00 committed by GitHub
parent 90a7208a73
commit 21986c3fc9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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),