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 2020/02/13 06:31:14 UTC

[flink] branch release-1.10 updated: [FLINK-16026][python] Limit the version of avro-python3

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

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


The following commit(s) were added to refs/heads/release-1.10 by this push:
     new b59e348  [FLINK-16026][python] Limit the version of avro-python3
b59e348 is described below

commit b59e348c4d5ae2c5e2817eca768635f9d3794278
Author: huangxingbo <hx...@gmail.com>
AuthorDate: Thu Feb 13 12:57:17 2020 +0800

    [FLINK-16026][python] Limit the version of avro-python3
    
    This closes #11078.
---
 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 eb42f5f..16e939d 100644
--- a/flink-python/setup.py
+++ b/flink-python/setup.py
@@ -224,7 +224,7 @@ run sdist.
         author_email='dev@flink.apache.org',
         python_requires='>=3.5',
         install_requires=['py4j==0.10.8.1', 'python-dateutil==2.8.0', 'apache-beam==2.15.0',
-                          'cloudpickle==1.2.2'],
+                          'cloudpickle==1.2.2', 'avro-python3>=1.8.1,<=1.9.1'],
         tests_require=['pytest==4.4.1'],
         description='Apache Flink Python API',
         long_description=long_description,