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

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


The following commit(s) were added to refs/heads/release-1.15 by this push:
     new b46ece1  [FLINK-26865][python] Fix the potential failure of loading 
library in Thread Mode
b46ece1 is described below

commit b46ece18d8a8b3a4972c35d78ed0affa593d0313
Author: huangxingbo <[email protected]>
AuthorDate: Fri Mar 25 17:58:03 2022 +0800

    [FLINK-26865][python] Fix the potential failure of loading library in 
Thread Mode
    
    This closes #19244.
---
 flink-python/dev/dev-requirements.txt           | 2 +-
 flink-python/pom.xml                            | 2 +-
 flink-python/setup.py                           | 2 +-
 flink-python/src/main/resources/META-INF/NOTICE | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/flink-python/dev/dev-requirements.txt 
b/flink-python/dev/dev-requirements.txt
index bd75137..00ce207 100755
--- a/flink-python/dev/dev-requirements.txt
+++ b/flink-python/dev/dev-requirements.txt
@@ -27,4 +27,4 @@ numpy>=1.14.3,<1.20
 fastavro>=0.21.4,<0.24
 grpcio>=1.29.0,<2
 grpcio-tools>=1.3.5,<=1.14.2
-pemja==0.1.2; python_version >= '3.7'
+pemja==0.1.3; python_version >= '3.7'
diff --git a/flink-python/pom.xml b/flink-python/pom.xml
index ad39eea..b735df3 100644
--- a/flink-python/pom.xml
+++ b/flink-python/pom.xml
@@ -107,7 +107,7 @@ under the License.
                <dependency>
                        <groupId>com.alibaba</groupId>
                        <artifactId>pemja</artifactId>
-                       <version>0.1.2</version>
+                       <version>0.1.3</version>
                </dependency>
 
                <!-- Protobuf dependencies -->
diff --git a/flink-python/setup.py b/flink-python/setup.py
index 6bd3f97..edad2f9 100644
--- a/flink-python/setup.py
+++ b/flink-python/setup.py
@@ -313,7 +313,7 @@ try:
                           'pandas>=1.0,<1.2.0', 'pyarrow>=0.15.1,<3.0.0',
                           'pytz>=2018.3', 'numpy>=1.14.3,<1.20', 
'fastavro>=0.21.4,<0.24',
                           'requests>=2.26.0', 'protobuf<3.18',
-                          'pemja==0.1.2;python_full_version >= "3.7"',
+                          'pemja==0.1.3;python_full_version >= "3.7"',
                           apache_flink_libraries_dependency],
         cmdclass={'build_ext': build_ext},
         tests_require=['pytest==4.4.1'],
diff --git a/flink-python/src/main/resources/META-INF/NOTICE 
b/flink-python/src/main/resources/META-INF/NOTICE
index 8532b8f..008988b 100644
--- a/flink-python/src/main/resources/META-INF/NOTICE
+++ b/flink-python/src/main/resources/META-INF/NOTICE
@@ -27,7 +27,7 @@ This project bundles the following dependencies under the 
Apache Software Licens
 - org.apache.beam:beam-vendor-sdks-java-extensions-protobuf:2.27.0
 - org.apache.beam:beam-vendor-guava-26_0-jre:0.1
 - org.apache.beam:beam-vendor-grpc-1_26_0:0.3
-- com.alibaba:pemja:0.1.2
+- com.alibaba:pemja:0.1.3
 
 This project bundles the following dependencies under the BSD license.
 See bundled license files for details

Reply via email to