Skip to content

Commit b5b0ac4

Browse files
authored
[Python] Move __version__ to setup.py (#6415)
1 parent 0c41d57 commit b5b0ac4

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

paimon-python/pypaimon/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
from pypaimon.catalog.catalog_factory import CatalogFactory
2020
from pypaimon.schema.schema import Schema
2121

22-
__version__ = "1.4.dev"
2322
__all__ = [
2423
"PaimonVirtualFileSystem",
2524
"CatalogFactory",

paimon-python/setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,9 @@
1616
# limitations under the License.
1717
##########################################################################
1818
import os
19-
from pypaimon import __version__
2019
from setuptools import find_packages, setup
2120

22-
VERSION = __version__
21+
VERSION = "1.4.dev"
2322

2423
PACKAGES = find_packages(include=["pypaimon*"])
2524

0 commit comments

Comments
 (0)