Skip to content

Commit 0dbb3e1

Browse files
authored
update aiohttp (#115)
1 parent e653e4e commit 0dbb3e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

livekit-api/livekit/api/livekit_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def __init__(
1313
api_key: Optional[str] = None,
1414
api_secret: Optional[str] = None,
1515
*,
16-
timeout: float = 60, # 1 minutes by default
16+
timeout: aiohttp.ClientTimeout = aiohttp.ClientTimeout(total=60), # 60 seconds
1717
):
1818
url = url or os.getenv("LIVEKIT_URL")
1919
api_key = api_key or os.getenv("LIVEKIT_API_KEY")

livekit-api/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
python_requires=">=3.7.0",
5050
install_requires=[
5151
"pyjwt>=2.0.0",
52-
"aiohttp>=3.8.0",
52+
"aiohttp>=3.9.0",
5353
"protobuf>=3.1.0",
5454
"types-protobuf>=3.1.0",
5555
"livekit-protocol>=0.2.0",

0 commit comments

Comments
 (0)