This is an automated email from the ASF dual-hosted git repository.
mmerli pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-client-python.git
The following commit(s) were added to refs/heads/main by this push:
new 7c6123f Remove version upper bound for protobuf dependency (#260)
7c6123f is described below
commit 7c6123f0a3f9ccd85c4e97f04d927b75f6f55cc6
Author: Matteo Merli <[email protected]>
AuthorDate: Sun Jun 22 10:41:30 2025 -0700
Remove version upper bound for protobuf dependency (#260)
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index bef1107..76d929b 100755
--- a/setup.py
+++ b/setup.py
@@ -79,7 +79,7 @@ extras_require = {}
# functions dependencies
extras_require["functions"] = sorted(
{
- "protobuf>=3.6.1,<=3.20.3",
+ "protobuf>=3.6.1",
"grpcio>=1.59.3",
"apache-bookkeeper-client>=4.16.1",
"prometheus_client",