Skip to content

Commit 9b7d0de

Browse files
Pin versions for protocol (#141)
1 parent 62cbed0 commit 9b7d0de

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

livekit-api/livekit/api/version.py

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

livekit-api/setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@
4646
keywords=["webrtc", "realtime", "audio", "video", "livekit"],
4747
license="Apache-2.0",
4848
packages=setuptools.find_namespace_packages(include=["livekit.*"]),
49-
python_requires=">=3.7.0",
49+
python_requires=">=3.8.0",
5050
install_requires=[
5151
"pyjwt>=2.0.0",
5252
"aiohttp>=3.9.0",
53-
"protobuf>=3.1.0",
54-
"types-protobuf>=3.1.0",
55-
"livekit-protocol>=0.2.0",
53+
"protobuf==4.25.1",
54+
"types-protobuf>=4,<5",
55+
"livekit-protocol~=0.3.0",
5656
],
5757
package_data={
5858
"livekit.api": ["py.typed", "*.pyi", "**/*.pyi"],
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.0"
1+
__version__ = "0.3.0"

livekit-protocol/setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
packages=setuptools.find_namespace_packages(include=["livekit.*"]),
4545
python_requires=">=3.7.0",
4646
install_requires=[
47-
"protobuf>=3.1.0",
48-
"types-protobuf>=3.1.0",
47+
"protobuf==4.25.1",
48+
"types-protobuf>=4,<5",
4949
],
5050
package_data={
5151
"livekit.protocol": ["*.pyi", "**/*.pyi"],

0 commit comments

Comments
 (0)