From b057e9395d304964f0f61bc2969900d58ea19639 Mon Sep 17 00:00:00 2001 From: Lari Hotari Date: Tue, 30 Apr 2024 11:43:00 +0300 Subject: [PATCH] Set grpcio minimum version to 1.59.3 so that Alpine py3-grpcio 1.59.3 can be used - there's no specific minimum version constraint originating from pulsar-client-python - grpcio is required by apache-bookkeeper-client. the dependencies are defined in https://github.com/apache/bookkeeper/blob/master/stream/clients/python/setup.py the version in this file is >= 1.8.2 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8055af0..bef1107 100755 --- a/setup.py +++ b/setup.py @@ -80,7 +80,7 @@ def build_extension(self, ext): extras_require["functions"] = sorted( { "protobuf>=3.6.1,<=3.20.3", - "grpcio>=1.60.0", + "grpcio>=1.59.3", "apache-bookkeeper-client>=4.16.1", "prometheus_client", "ratelimit"