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 c3c12c4  Set grpcio minimum version to 1.59.3 so that Alpine 
py3-grpcio 1.59.3 can be used (#211)
c3c12c4 is described below

commit c3c12c416b00943d03929457c026a6fde8296e00
Author: Lari Hotari <lhot...@users.noreply.github.com>
AuthorDate: Tue May 7 18:59:54 2024 +0300

    Set grpcio minimum version to 1.59.3 so that Alpine py3-grpcio 1.59.3 can 
be used (#211)
    
    - 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 @@ extras_require = {}
 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"

Reply via email to