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

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


The following commit(s) were added to refs/heads/master by this push:
     new b5b0ac44e3 [Python] Move __version__ to setup.py (#6415)
b5b0ac44e3 is described below

commit b5b0ac44e3a2aa198d140645fa35f90d038872b8
Author: umi <[email protected]>
AuthorDate: Thu Oct 16 19:21:09 2025 +0800

    [Python] Move __version__ to setup.py (#6415)
---
 paimon-python/pypaimon/__init__.py | 1 -
 paimon-python/setup.py             | 3 +--
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/paimon-python/pypaimon/__init__.py 
b/paimon-python/pypaimon/__init__.py
index 7c35ca3a24..060529a185 100644
--- a/paimon-python/pypaimon/__init__.py
+++ b/paimon-python/pypaimon/__init__.py
@@ -19,7 +19,6 @@ from pypaimon.filesystem.pvfs import PaimonVirtualFileSystem
 from pypaimon.catalog.catalog_factory import CatalogFactory
 from pypaimon.schema.schema import Schema
 
-__version__ = "1.4.dev"
 __all__ = [
     "PaimonVirtualFileSystem",
     "CatalogFactory",
diff --git a/paimon-python/setup.py b/paimon-python/setup.py
index 3a7f9b3a2e..9aa2af4168 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.4.dev"
 
 PACKAGES = find_packages(include=["pypaimon*"])
 

Reply via email to