From 022b8ac42cebc45f26cc0bfe716b797f67a37f4b Mon Sep 17 00:00:00 2001 From: auxten Date: Thu, 8 Aug 2024 20:22:59 +0800 Subject: [PATCH] Fix version update issue making whl --- chdb/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chdb/__init__.py b/chdb/__init__.py index 97f3f5cae28..c365b3e6432 100644 --- a/chdb/__init__.py +++ b/chdb/__init__.py @@ -18,7 +18,7 @@ class ChdbError(Exception): # UDF script path will be f"{g_udf_path}/{func_name}.py" g_udf_path = "" -chdb_version = ("0", "6", "0") +chdb_version = ('0', '6', '0') if sys.version_info[:2] >= (3, 7): # get the path of the current file current_path = os.path.dirname(os.path.abspath(__file__))