You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ji...@apache.org on 2019/07/09 06:12:44 UTC

[flink] branch master updated: [hotfix][python]Fix the install failure of pyflink used previous version of python 2.7 (#9016)

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

jincheng 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 ed0b3ff  [hotfix][python]Fix the install failure of pyflink used previous version of python 2.7 (#9016)
ed0b3ff is described below

commit ed0b3ffea3aad427dc823a2c08f7dcfd1000107d
Author: HuangXingBo <hx...@gmail.com>
AuthorDate: Tue Jul 9 14:12:26 2019 +0800

    [hotfix][python]Fix the install failure of pyflink used previous version of python 2.7 (#9016)
    
    Fix for python 2.7.10.
---
 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 ec7153e..b87e49f 100644
--- a/flink-python/setup.py
+++ b/flink-python/setup.py
@@ -170,7 +170,7 @@ run sdist.
         package_data={
             'pyflink': ['LICENSE', 'NOTICE', 'README.txt'],
             'pyflink.lib': ['*.jar'],
-            'pyflink.opt': ['*', '*/*'],
+            'pyflink.opt': ['*.*', '*/*'],
             'pyflink.conf': ['*'],
             'pyflink.log': ['*'],
             'pyflink.examples': ['*.py', '*/*.py'],