File tree Expand file tree Collapse file tree 8 files changed +16
-6
lines changed Expand file tree Collapse file tree 8 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 11[tool .bumpversion ]
2- current_version = " 3.6 .0"
2+ current_version = " 3.7 .0"
33commit = true
44tag = false
55tag_name = " v{new_version}"
Original file line number Diff line number Diff line change @@ -218,6 +218,7 @@ jobs:
218218 bash -x ./examples/runArrowTest.sh
219219 - name : Build wheels
220220 run : |
221+ rm -rf chdb/build/
221222 export PATH="$HOME/.pyenv/bin:$PATH"
222223 eval "$(pyenv init -)"
223224 export PATH=$(brew --prefix llvm@19)/bin:$(brew --prefix lld@19)/bin:/usr/local/opt/grep/libexec/gnubin:/usr/local/opt/binutils/bin:$PATH:/usr/local/opt/findutils/libexec/gnubin
@@ -231,6 +232,10 @@ jobs:
231232 eval "$(pyenv init -)"
232233 pyenv shell 3.8
233234 python -m wheel tags --platform-tag=macosx_11_0_arm64 --remove dist/*.whl
235+ - name : Verify wheel sizes
236+ run : |
237+ echo "=== Wheel sizes ==="
238+ du -sh dist/*
234239 - name : Setup core dump
235240 run : |
236241 mkdir -p tmp/core
Original file line number Diff line number Diff line change @@ -219,6 +219,7 @@ jobs:
219219 bash -x ./examples/runArrowTest.sh
220220 - name : Build wheels
221221 run : |
222+ rm -rf chdb/build/
222223 export PATH="$HOME/.pyenv/bin:$PATH"
223224 eval "$(pyenv init -)"
224225 source ~/.cargo/env
@@ -233,6 +234,10 @@ jobs:
233234 eval "$(pyenv init -)"
234235 pyenv shell 3.9
235236 python -m wheel tags --platform-tag=macosx_10_15_x86_64 --remove dist/*.whl
237+ - name : Verify wheel sizes
238+ run : |
239+ echo "=== Wheel sizes ==="
240+ du -sh dist/*
236241 - name : Setup core dump collection
237242 run : |
238243 mkdir -p tmp/core
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ class ChdbError(Exception):
5050# UDF script path will be f"{g_udf_path}/{func_name}.py"
5151g_udf_path = ""
5252
53- __version__ = "3.6 .0"
53+ __version__ = "3.7 .0"
5454if sys .version_info [:2 ] >= (3 , 7 ):
5555 # get the path of the current file
5656 current_path = os .path .dirname (os .path .abspath (__file__ ))
Original file line number Diff line number Diff line change 4545if chdb and hasattr (chdb , '__version__' ):
4646 version = release = chdb .__version__
4747else :
48- version = release = '3.6 .0'
48+ version = release = '3.7 .0'
4949
5050github_repo_url = 'https://github.com/chdb-io/chdb'
5151
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ You should see output similar to:
8989 message
9090 chDB is working!
9191
92- chDB version: 3.6 .0
92+ chDB version: 3.7 .0
9393 ClickHouse engine: 25.5.2.1
9494
9595 Troubleshooting
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ If you encounter import errors:
4040 pip install --force-reinstall chdb
4141
4242 # Install specific version
43- pip install chdb==3.6 .0
43+ pip install chdb==3.7 .0
4444
4545 **Check installation: **
4646
Original file line number Diff line number Diff line change 11[project ]
22name = " chdb"
33requires-python = " >=3.8"
4- version = " 3.6 .0"
4+ version = " 3.7 .0"
55description = " chDB is an in-process OLAP SQL Engine powered by ClickHouse"
66readme = " README.md"
77license = {text = " Apache-2.0" }
You can’t perform that action at this time.
0 commit comments