Skip to content

Commit

Permalink
Pin versions for protocol (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
keepingitneil authored Jan 13, 2024
1 parent 62cbed0 commit 9b7d0de
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 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.3.0"
__version__ = "0.4.0"
8 changes: 4 additions & 4 deletions livekit-api/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@
keywords=["webrtc", "realtime", "audio", "video", "livekit"],
license="Apache-2.0",
packages=setuptools.find_namespace_packages(include=["livekit.*"]),
python_requires=">=3.7.0",
python_requires=">=3.8.0",
install_requires=[
"pyjwt>=2.0.0",
"aiohttp>=3.9.0",
"protobuf>=3.1.0",
"types-protobuf>=3.1.0",
"livekit-protocol>=0.2.0",
"protobuf==4.25.1",
"types-protobuf>=4,<5",
"livekit-protocol~=0.3.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.2.0"
__version__ = "0.3.0"
4 changes: 2 additions & 2 deletions livekit-protocol/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
packages=setuptools.find_namespace_packages(include=["livekit.*"]),
python_requires=">=3.7.0",
install_requires=[
"protobuf>=3.1.0",
"types-protobuf>=3.1.0",
"protobuf==4.25.1",
"types-protobuf>=4,<5",
],
package_data={
"livekit.protocol": ["*.pyi", "**/*.pyi"],
Expand Down

0 comments on commit 9b7d0de

Please sign in to comment.