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 07:36:56 UTC

[flink] branch master 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 master
in repository https://gitbox.apache.org/repos/asf/flink.git


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

commit f0cb93ab63e2a25db5165e80dcd094aa9b17f9e6
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 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-python/setup.py b/flink-python/setup.py
index c810826..df97d88 100644
--- a/flink-python/setup.py
+++ b/flink-python/setup.py
@@ -326,7 +326,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',