Define an upper-bound for all SemVer dependencies (#328)

Signed-off-by: rany <rany2@riseup.net>
This commit is contained in:
Rany
2024-11-22 22:06:16 +02:00
committed by GitHub
parent d0e201ad3e
commit 93fb851cd2

View File

@@ -4,10 +4,10 @@ from setuptools import setup
setup(
name="edge-tts",
install_requires=[
"aiohttp>=3.8.0",
"aiohttp>=3.8.0,<4.0.0",
"certifi>=2023.11.17",
"srt>=3.4.1",
"tabulate>=0.4.4",
"typing-extensions>=4.1.0",
"srt>=3.4.1,<4.0.0",
"tabulate>=0.4.4,<1.0.0",
"typing-extensions>=4.1.0,<5.0.0",
],
)