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 c2879d1 [FLINK-21216][python] Limit the numpy version < 1.20.0
(#14825)
c2879d1 is described below
commit c2879d1e43be4a0c0e46fea505d2f80db8c5e137
Author: HuangXingBo <[email protected]>
AuthorDate: Mon Feb 1 15:36:27 2021 +0800
[FLINK-21216][python] Limit the numpy version < 1.20.0 (#14825)
---
flink-python/setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/flink-python/setup.py b/flink-python/setup.py
index 176e2ac8..1fa49b4 100644
--- a/flink-python/setup.py
+++ b/flink-python/setup.py
@@ -318,7 +318,7 @@ run sdist.
'cloudpickle==1.2.2', 'avro-python3>=1.8.1,<=1.9.1',
'jsonpickle==1.2',
'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'],
+ 'pyarrow>=0.15.1,<0.18.0', 'pytz>=2018.3',
'numpy>=1.14.3,<1.20'],
cmdclass={'build_ext': build_ext},
tests_require=['pytest==4.4.1'],
description='Apache Flink Python API',