Skip to content

Commit

Permalink
Relax protobuf version requirements (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
keepingitneil authored Feb 2, 2024
1 parent 50bdb28 commit 139e965
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion livekit-api/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
install_requires=[
"pyjwt>=2.0.0",
"aiohttp>=3.9.0",
"protobuf>=4,<5",
"protobuf>=3",
"types-protobuf>=4,<5",
"livekit-protocol~=0.3.0",
],
Expand Down
2 changes: 1 addition & 1 deletion livekit-protocol/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
packages=setuptools.find_namespace_packages(include=["livekit.*"]),
python_requires=">=3.7.0",
install_requires=[
"protobuf>=4,<5",
"protobuf>=3",
"types-protobuf>=4,<5",
],
package_data={
Expand Down
2 changes: 1 addition & 1 deletion livekit-rtc/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def finalize_options(self):
license="Apache-2.0",
packages=setuptools.find_namespace_packages(include=["livekit.*"]),
python_requires=">=3.9.0",
install_requires=["protobuf>=4", "types-protobuf>=4"],
install_requires=["protobuf>=3", "types-protobuf>=3"],
package_data={
"livekit.rtc": ["_proto/*.py", "py.typed", "*.pyi", "**/*.pyi"],
"livekit.rtc.resources": ["*.so", "*.dylib", "*.dll", "LICENSE.md", "*.h"],
Expand Down

0 comments on commit 139e965

Please sign in to comment.