You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bookkeeper.apache.org by eo...@apache.org on 2020/04/21 15:01:03 UTC

[bookkeeper] branch branch-4.10 updated: Force to use Python grpcio less then 1.26.0

This is an automated email from the ASF dual-hosted git repository.

eolivelli pushed a commit to branch branch-4.10
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git


The following commit(s) were added to refs/heads/branch-4.10 by this push:
     new 6fab088  Force to use Python grpcio less then 1.26.0
6fab088 is described below

commit 6fab0884dee19f1c5ac8befe13d176e70a3895f7
Author: Enrico Olivelli <eo...@gmail.com>
AuthorDate: Tue Apr 21 17:00:34 2020 +0200

    Force to use Python grpcio less then 1.26.0
    
    - it looks like a newer version of grpcio has been published and we were using open version range
    - by forcing a closed ended range of version we workaround the error in integration tests
    
    Reviewers: Jia Zhai <zh...@apache.org>, Matteo Minardi <mi...@hotmail.it>
    
    This closes #2317 from eolivelli/fix/integration-tests-python
    
    (cherry picked from commit f1077a6fa48553d7d8b1cf164e2e5a4f37125204)
    Signed-off-by: Enrico Olivelli <en...@diennea.com>
---
 stream/clients/python/setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/stream/clients/python/setup.py b/stream/clients/python/setup.py
index 633a815..9ef4455 100644
--- a/stream/clients/python/setup.py
+++ b/stream/clients/python/setup.py
@@ -32,7 +32,7 @@ dependencies = [
     'six>=1.10.0',
     'pytz',
     'futures>=3.2.0;python_version<"3.2"',
-    'grpcio>=1.8.2',
+    'grpcio<1.26.0,>=1.8.2',
     'pymmh3>=0.0.3'
 ]
 extras = {