Skip to content

Commit

Permalink
Relax version pinning for protobuf
Browse files Browse the repository at this point in the history
  • Loading branch information
keepingitneil committed Jan 13, 2024
1 parent 9b7d0de commit b2d4b3e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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.5.0"
4 changes: 2 additions & 2 deletions livekit-api/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@
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",
"livekit-protocol~=0.4.0",
],
package_data={
"livekit.api": ["py.typed", "*.pyi", "**/*.pyi"],
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.4.0"
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 b2d4b3e

Please sign in to comment.