Skip to content

Commit

Permalink
Relax version pinning for protobuf (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
keepingitneil authored Jan 14, 2024
1 parent 9b7d0de commit 66e0c4b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion livekit-api/livekit/api/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.0"
__version__ = "0.4.1"
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.25.1",
"protobuf>=4,<5",
"types-protobuf>=4,<5",
"livekit-protocol~=0.3.0",
],
Expand Down
2 changes: 1 addition & 1 deletion livekit-protocol/livekit/protocol/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.0"
__version__ = "0.3.1"
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.25.1",
"protobuf>=4,<5",
"types-protobuf>=4,<5",
],
package_data={
Expand Down

0 comments on commit 66e0c4b

Please sign in to comment.