Skip to content

Commit 139e965

Browse files
Relax protobuf version requirements (#158)
1 parent 50bdb28 commit 139e965

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

livekit-api/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
install_requires=[
5151
"pyjwt>=2.0.0",
5252
"aiohttp>=3.9.0",
53-
"protobuf>=4,<5",
53+
"protobuf>=3",
5454
"types-protobuf>=4,<5",
5555
"livekit-protocol~=0.3.0",
5656
],

livekit-protocol/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
packages=setuptools.find_namespace_packages(include=["livekit.*"]),
4545
python_requires=">=3.7.0",
4646
install_requires=[
47-
"protobuf>=4,<5",
47+
"protobuf>=3",
4848
"types-protobuf>=4,<5",
4949
],
5050
package_data={

livekit-rtc/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def finalize_options(self):
5656
license="Apache-2.0",
5757
packages=setuptools.find_namespace_packages(include=["livekit.*"]),
5858
python_requires=">=3.9.0",
59-
install_requires=["protobuf>=4", "types-protobuf>=4"],
59+
install_requires=["protobuf>=3", "types-protobuf>=3"],
6060
package_data={
6161
"livekit.rtc": ["_proto/*.py", "py.typed", "*.pyi", "**/*.pyi"],
6262
"livekit.rtc.resources": ["*.so", "*.dylib", "*.dll", "LICENSE.md", "*.h"],

0 commit comments

Comments
 (0)