Skip to content

Commit 9e63c14

Browse files
authored
relax protobuf version constraints (#406)
1 parent d976d67 commit 9e63c14

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

livekit-api/livekit/api/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.0"
1+
__version__ = "1.0.1"

livekit-api/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
install_requires=[
5252
"pyjwt>=2.0.0",
5353
"aiohttp>=3.9.0",
54-
"protobuf>=4,<5",
55-
"types-protobuf>=4,<5",
54+
"protobuf>=4",
55+
"types-protobuf>=4",
5656
"livekit-protocol~=1.0",
5757
],
5858
package_data={

livekit-protocol/livekit/protocol/version.py

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

livekit-protocol/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
packages=setuptools.find_namespace_packages(include=["livekit.*"]),
4646
python_requires=">=3.7.0",
4747
install_requires=[
48-
"protobuf>=3",
49-
"types-protobuf>=4,<5",
48+
"protobuf>=4",
49+
"types-protobuf>=4",
5050
],
5151
package_data={
5252
"livekit.protocol": ["*.pyi", "**/*.pyi", "py.typed"],

0 commit comments

Comments
 (0)