Skip to content

Commit ccaa7b3

Browse files
authored
Merge pull request #92 from guyush1/update-python-3.14.3
Update python 3.14.3
2 parents 8de57d7 + 781c3d6 commit ccaa7b3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/docker_utils/download_musl_toolchains.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ async def retry_middleware(req: aiohttp.ClientRequest, handler: aiohttp.ClientHa
5252
return resp
5353

5454
async def download_file(url: str, filename: str):
55-
async with aiohttp.ClientSession(middlewares=(retry_middleware,)) as session:
55+
async with aiohttp.ClientSession(middlewares=(retry_middleware,), timeout=aiohttp.ClientTimeout(0)) as session:
5656
async with session.get(url) as response:
5757
response.raise_for_status()
5858
with open(filename, 'wb') as f:
Submodule cpython-static updated 425 files

0 commit comments

Comments
 (0)