This is an automated email from the ASF dual-hosted git repository.
dianfu pushed a commit to branch release-1.12
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.12 by this push:
new 5dd50ef [FLINK-24390][python] Limit the grpcio version <= 1.40.0 for
Python 3.5 (#17433)
5dd50ef is described below
commit 5dd50ef0e69eb104ad99a1a09f4e0e15b16cf647
Author: Dian Fu <[email protected]>
AuthorDate: Sat Oct 9 14:49:30 2021 +0800
[FLINK-24390][python] Limit the grpcio version <= 1.40.0 for Python 3.5
(#17433)
---
flink-python/setup.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/flink-python/setup.py b/flink-python/setup.py
index 32fcb61..18b5be8 100644
--- a/flink-python/setup.py
+++ b/flink-python/setup.py
@@ -319,7 +319,8 @@ run sdist.
'pandas>=0.24.2,<1; python_full_version < "3.5.3"',
'pandas>=0.25.2,<1; python_full_version >= "3.5.3"',
'pyarrow>=0.15.1,<0.18.0', 'pytz>=2018.3',
'numpy>=1.14.3,<1.20',
- 'requests>=2.26.0; python_version >= "3.6"',
'protobuf<3.18'],
+ 'requests>=2.26.0; python_version >= "3.6"',
'protobuf<3.18',
+ 'grpcio<=1.40.0; python_version < "3.6"'],
cmdclass={'build_ext': build_ext},
tests_require=['pytest==4.4.1'],
description='Apache Flink Python API',