We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c41d57 commit b5b0ac4Copy full SHA for b5b0ac4
2 files changed
paimon-python/pypaimon/__init__.py
@@ -19,7 +19,6 @@
19
from pypaimon.catalog.catalog_factory import CatalogFactory
20
from pypaimon.schema.schema import Schema
21
22
-__version__ = "1.4.dev"
23
__all__ = [
24
"PaimonVirtualFileSystem",
25
"CatalogFactory",
paimon-python/setup.py
@@ -16,10 +16,9 @@
16
# limitations under the License.
17
##########################################################################
18
import os
-from pypaimon import __version__
from setuptools import find_packages, setup
-VERSION = __version__
+VERSION = "1.4.dev"
PACKAGES = find_packages(include=["pypaimon*"])
0 commit comments