mirror of https://github.com/astral-sh/uv
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:
parent
90a7208a73
commit
21986c3fc9
|
|
@ -729,7 +729,7 @@ async def find() -> None:
|
||||||
}
|
}
|
||||||
if token:
|
if token:
|
||||||
headers["Authorization"] = "Bearer " + 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 = [
|
finders = [
|
||||||
CPythonFinder(client),
|
CPythonFinder(client),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue