This is an automated email from the ASF dual-hosted git repository.
eolivelli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git
The following commit(s) were added to refs/heads/master by this push:
new f1077a6 Force to use Python grpcio less then 1.26.0
f1077a6 is described below
commit f1077a6fa48553d7d8b1cf164e2e5a4f37125204
Author: Enrico Olivelli <[email protected]>
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 <[email protected]>, Matteo Minardi
<[email protected]>
This closes #2317 from eolivelli/fix/integration-tests-python
---
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 b1803af..40268d9 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 = {