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

lzljs3620320 pushed a commit to branch release-1.3
in repository https://gitbox.apache.org/repos/asf/paimon.git


The following commit(s) were added to refs/heads/release-1.3 by this push:
     new 4f9bfd85fc [Python] Move __version__ to setup.py (#6491)
4f9bfd85fc is described below

commit 4f9bfd85fcaf0c0fd519db0db76ef0ed693dde62
Author: umi <[email protected]>
AuthorDate: Wed Oct 29 17:11:21 2025 +0800

    [Python] Move __version__ to setup.py (#6491)
---
 paimon-python/dev/requirements.txt | 2 +-
 paimon-python/pypaimon/__init__.py | 1 -
 paimon-python/setup.py             | 3 +--
 3 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/paimon-python/dev/requirements.txt 
b/paimon-python/dev/requirements.txt
index 26a8de68b5..9f4b80b9bd 100644
--- a/paimon-python/dev/requirements.txt
+++ b/paimon-python/dev/requirements.txt
@@ -34,7 +34,7 @@ polars==0.9.12; python_version<"3.8"
 polars==1.8.0; python_version=="3.8"
 polars==1.32.0; python_version>"3.8"
 pyarrow==6.0.1; python_version < "3.8"
-pyarrow>=16; python_version >= "3.8"
+pyarrow==16; python_version >= "3.8"
 readerwriterlock==1.0.9
 zstandard==0.19.0; python_version<"3.9"
 zstandard==0.24.0; python_version>="3.9"
\ No newline at end of file
diff --git a/paimon-python/pypaimon/__init__.py 
b/paimon-python/pypaimon/__init__.py
index fc4e7d3b61..5313e8e18a 100644
--- a/paimon-python/pypaimon/__init__.py
+++ b/paimon-python/pypaimon/__init__.py
@@ -19,7 +19,6 @@ from pypaimon.catalog.catalog_factory import CatalogFactory
 from pypaimon.filesystem.pvfs import PaimonVirtualFileSystem
 from pypaimon.schema.schema import Schema
 
-__version__ = "0.3.dev"
 __all__ = [
     "PaimonVirtualFileSystem",
     "CatalogFactory",
diff --git a/paimon-python/setup.py b/paimon-python/setup.py
index 3a7f9b3a2e..4744eba0b7 100644
--- a/paimon-python/setup.py
+++ b/paimon-python/setup.py
@@ -16,10 +16,9 @@
 # limitations under the License.
 ##########################################################################
 import os
-from pypaimon import __version__
 from setuptools import find_packages, setup
 
-VERSION = __version__
+VERSION = "1.3.0"
 
 PACKAGES = find_packages(include=["pypaimon*"])
 

Reply via email to