You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by di...@apache.org on 2021/02/01 09:16:38 UTC

[flink] branch release-1.11 updated: [FLINK-21216][python] Limit the numpy version < 1.20.0 (#14825)

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

dianfu pushed a commit to branch release-1.11
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.11 by this push:
     new 9c837f1  [FLINK-21216][python] Limit the numpy version < 1.20.0 (#14825)
9c837f1 is described below

commit 9c837f137953308bfda22d05e4bfac0fea7ca4c6
Author: HuangXingBo <hx...@gmail.com>
AuthorDate: Mon Feb 1 15:36:27 2021 +0800

    [FLINK-21216][python] Limit the numpy version < 1.20.0 (#14825)
---
 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 22ca08a..edc728e 100644
--- a/flink-python/setup.py
+++ b/flink-python/setup.py
@@ -291,7 +291,8 @@ run sdist.
         python_requires='>=3.5',
         install_requires=['py4j==0.10.8.1', 'python-dateutil==2.8.0', 'apache-beam==2.19.0',
                           'cloudpickle==1.2.2', 'avro-python3>=1.8.1,<=1.9.1', 'jsonpickle==1.2',
-                          'pandas>=0.23.4,<=0.25.3', 'pyarrow>=0.15.1,<0.16.0', 'pytz>=2018.3'],
+                          'pandas>=0.23.4,<=0.25.3', 'pyarrow>=0.15.1,<0.16.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',