Skip to content

Commit 93fb851

Browse files
authored
Define an upper-bound for all SemVer dependencies (#328)
Signed-off-by: rany <[email protected]>
1 parent d0e201a commit 93fb851

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
setup(
55
name="edge-tts",
66
install_requires=[
7-
"aiohttp>=3.8.0",
7+
"aiohttp>=3.8.0,<4.0.0",
88
"certifi>=2023.11.17",
9-
"srt>=3.4.1",
10-
"tabulate>=0.4.4",
11-
"typing-extensions>=4.1.0",
9+
"srt>=3.4.1,<4.0.0",
10+
"tabulate>=0.4.4,<1.0.0",
11+
"typing-extensions>=4.1.0,<5.0.0",
1212
],
1313
)

0 commit comments

Comments
 (0)