Skip to content

Commit 66e0c4b

Browse files
Relax version pinning for protobuf (#142)
1 parent 9b7d0de commit 66e0c4b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

livekit-api/livekit/api/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.4.0"
1+
__version__ = "0.4.1"

livekit-api/setup.py

+1-1
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.25.1",
53+
"protobuf>=4,<5",
5454
"types-protobuf>=4,<5",
5555
"livekit-protocol~=0.3.0",
5656
],
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.3.0"
1+
__version__ = "0.3.1"

livekit-protocol/setup.py

+1-1
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.25.1",
47+
"protobuf>=4,<5",
4848
"types-protobuf>=4,<5",
4949
],
5050
package_data={

0 commit comments

Comments
 (0)