Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/build_linux_arm64_wheels-gh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ jobs:
pyenv install 3.11:latest
pyenv install 3.12:latest
pyenv install 3.13:latest
pyenv global 3.8 3.9 3.10 3.11 3.12 3.13
pyenv install 3.14:latest
pyenv global 3.8 3.9 3.10 3.11 3.12 3.13 3.14

# Verify installations
echo "Installed versions:"
Expand All @@ -87,7 +88,7 @@ jobs:
pyenv versions
echo ""
echo "Verifying all required Python versions are available:"
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
for version in 3.8 3.9 3.10 3.11 3.12 3.13 3.14; do
if ! pyenv versions --bare | grep -q "^$version"; then
echo "ERROR: Python $version is not installed!"
exit 1
Expand All @@ -99,7 +100,7 @@ jobs:
run: |
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
for version in 3.8 3.9 3.10 3.11 3.12 3.13 3.14; do
echo "Installing dependencies for Python $version"
pyenv shell $version
python -m pip install --upgrade pip
Expand Down Expand Up @@ -258,7 +259,7 @@ jobs:
run: |
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
for version in 3.8 3.9 3.10 3.11 3.12 3.13 3.14; do
echo "Testing chdb on Python $version"
pyenv shell $version
python -m pip install dist/*.whl --force-reinstall
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/build_linux_x86_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ jobs:
pyenv install 3.11:latest
pyenv install 3.12:latest
pyenv install 3.13:latest
pyenv global 3.8 3.9 3.10 3.11 3.12 3.13
pyenv install 3.14:latest
pyenv global 3.8 3.9 3.10 3.11 3.12 3.13 3.14

# Verify installations
echo "Installed versions:"
Expand All @@ -87,7 +88,7 @@ jobs:
pyenv versions
echo ""
echo "Verifying all required Python versions are available:"
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
for version in 3.8 3.9 3.10 3.11 3.12 3.13 3.14; do
if ! pyenv versions --bare | grep -q "^$version"; then
echo "ERROR: Python $version is not installed!"
exit 1
Expand All @@ -99,7 +100,7 @@ jobs:
run: |
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
for version in 3.8 3.9 3.10 3.11 3.12 3.13 3.14; do
echo "Installing dependencies for Python $version"
pyenv shell $version
python -m pip install --upgrade pip
Expand All @@ -123,7 +124,7 @@ jobs:
which clang++-19
clang++-19 --version
sudo apt-get install -y make cmake ccache ninja-build yasm gawk wget
# Install WebAssembly linker (wasm-ld)
# Install WebAssembly linker (wasm-ld)
sudo apt-get install -y lld-19
# Create symlink for wasm-ld
if ! command -v wasm-ld &> /dev/null; then
Expand Down Expand Up @@ -257,7 +258,7 @@ jobs:
run: |
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
for version in 3.8 3.9 3.10 3.11 3.12 3.13 3.14; do
echo "Testing chdb on Python $version"
pyenv shell $version
python -m pip install dist/*.whl --force-reinstall
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/build_macos_arm64_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ jobs:
pyenv install 3.11:latest
pyenv install 3.12:latest
pyenv install 3.13:latest
pyenv global 3.8 3.9 3.10 3.11 3.12 3.13
pyenv install 3.14:latest
pyenv global 3.8 3.9 3.10 3.11 3.12 3.13 3.14

echo "Installed versions:"
pyenv versions
Expand All @@ -72,7 +73,7 @@ jobs:
pyenv versions
echo ""
echo "Verifying all required Python versions are available:"
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
for version in 3.8 3.9 3.10 3.11 3.12 3.13 3.14; do
if ! pyenv versions --bare | grep -q "^$version"; then
echo "ERROR: Python $version is not installed!"
exit 1
Expand All @@ -84,7 +85,7 @@ jobs:
run: |
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
for version in 3.8 3.9 3.10 3.11 3.12 3.13 3.14; do
echo "Installing dependencies for Python $version"
pyenv shell $version
python -m pip install --upgrade pip
Expand Down Expand Up @@ -251,7 +252,7 @@ jobs:
run: |
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
for version in 3.8 3.9 3.10 3.11 3.12 3.13 3.14; do
echo "Testing chdb on Python $version"
pyenv shell $version
python -m pip install dist/*.whl --force-reinstall --no-cache-dir
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/build_macos_x86_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ jobs:
pyenv install 3.11:latest
pyenv install 3.12:latest
pyenv install 3.13:latest
pyenv global 3.9 3.10 3.11 3.12 3.13
pyenv install 3.14:latest
pyenv global 3.9 3.10 3.11 3.12 3.13 3.14

echo "Installed versions:"
pyenv versions
Expand All @@ -61,7 +62,7 @@ jobs:
pyenv versions
echo ""
echo "Verifying all required Python versions are available:"
for version in 3.9 3.10 3.11 3.12 3.13; do
for version in 3.9 3.10 3.11 3.12 3.13 3.14; do
if ! pyenv versions --bare | grep -q "^$version"; then
echo "ERROR: Python $version is not installed!"
exit 1
Expand All @@ -73,7 +74,7 @@ jobs:
run: |
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
for version in 3.9 3.10 3.11 3.12 3.13; do
for version in 3.9 3.10 3.11 3.12 3.13 3.14; do
echo "Installing dependencies for Python $version"
pyenv shell $version
python -m pip install --upgrade pip
Expand Down Expand Up @@ -253,7 +254,7 @@ jobs:
run: |
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
for version in 3.9 3.10 3.11 3.12 3.13; do
for version in 3.9 3.10 3.11 3.12 3.13 3.14; do
echo "Testing chdb on Python $version"
pyenv shell $version
python -m pip install dist/*.whl --force-reinstall
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build_musllinux_arm64_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,16 +103,16 @@ jobs:
eval "$(pyenv init -)"

# Install Python versions
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
for version in 3.8 3.9 3.10 3.11 3.12 3.13 3.14; do
echo "Installing Python $version"
pyenv install $version:latest
done
pyenv global 3.8 3.9 3.10 3.11 3.12 3.13
pyenv global 3.8 3.9 3.10 3.11 3.12 3.13 3.14

# Verify installations
echo "Installed versions:"
pyenv versions
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
for version in 3.8 3.9 3.10 3.11 3.12 3.13 3.14; do
if ! pyenv versions --bare | grep -q "^$version"; then
echo "ERROR: Python $version is not installed!"
exit 1
Expand All @@ -128,7 +128,7 @@ jobs:
rustup component add --toolchain nightly-2025-07-07 rust-src

# Install Python dependencies
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
for version in 3.8 3.9 3.10 3.11 3.12 3.13 3.14; do
echo "Installing dependencies for Python $version"
pyenv shell $version
python -m pip install --upgrade pip
Expand Down Expand Up @@ -235,7 +235,7 @@ jobs:
CURRENT_TEST=0
TEST_FAILED=false

for version in 3.9 3.10 3.11 3.12 3.13; do
for version in 3.9 3.10 3.11 3.12 3.13 3.14; do
CURRENT_TEST=$((CURRENT_TEST + 1))
echo "=== Test $CURRENT_TEST/$TOTAL_TESTS: Python $version ==="
echo "Test start time: $(date)"
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/build_musllinux_x86_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ jobs:
pyenv install 3.11:latest
pyenv install 3.12:latest
pyenv install 3.13:latest
pyenv global 3.8 3.9 3.10 3.11 3.12 3.13
pyenv install 3.14:latest
pyenv global 3.8 3.9 3.10 3.11 3.12 3.13 3.14

# Verify installations
echo "Installed versions:"
Expand All @@ -100,7 +101,7 @@ jobs:
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
echo "Verifying all required Python versions are available:"
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
for version in 3.8 3.9 3.10 3.11 3.12 3.13 3.14; do
if ! pyenv versions --bare | grep -q "^$version"; then
echo "ERROR: Python $version is not installed!"
exit 1
Expand All @@ -112,7 +113,7 @@ jobs:
run: |
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
for version in 3.8 3.9 3.10 3.11 3.12 3.13 3.14; do
echo "Installing dependencies for Python $version"
pyenv shell $version
python -m pip install --upgrade pip
Expand Down Expand Up @@ -237,7 +238,7 @@ jobs:
run: |
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
for version in 3.9 3.10 3.11 3.12 3.13; do
for version in 3.9 3.10 3.11 3.12 3.13 3.14; do
echo "Testing chdb on Python $version"
pyenv shell $version
python -m pip install dist/*.whl --force-reinstall
Expand Down
6 changes: 3 additions & 3 deletions chdb/build_pybind11.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ build_pybind11_nonlimitedapi() {
}

build_all_pybind11_nonlimitedapi() {
local python_versions=("3.8" "3.9" "3.10" "3.11" "3.12" "3.13")
local python_versions=("3.8" "3.9" "3.10" "3.11" "3.12" "3.13" "3.14")

# Skip Python 3.8 for macOS x86_64
if [ "$(uname)" == "Darwin" ] && [ "$(uname -m)" == "x86_64" ]; then
python_versions=("3.9" "3.10" "3.11" "3.12" "3.13")
python_versions=("3.9" "3.10" "3.11" "3.12" "3.13" "3.14")
fi

echo "Building pybind11 nonlimitedapi libraries for all Python versions..."
Expand Down
Loading