Skip to content

Commit e927539

Browse files
committed
test: fix build
1 parent c9b3877 commit e927539

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/build_linux_x86_wheels.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ jobs:
3232
libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm \
3333
libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev \
3434
libffi-dev liblzma-dev
35-
sudo apt-get install -y libarrow-dev libarrow-dataset-dev libarrow-flight-dev libarrow-python-dev
3635
- name: Scan SQLite vulnerabilities with grype
3736
run: |
3837
# Install grype and required tools

.github/workflows/build_musllinux_arm64_wheels.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,16 +103,16 @@ jobs:
103103
eval "$(pyenv init -)"
104104
105105
# Install Python versions
106-
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
106+
for version in 3.8 3.9 3.10 3.11 3.12 3.13 3.14; do
107107
echo "Installing Python $version"
108108
pyenv install $version:latest
109109
done
110-
pyenv global 3.8 3.9 3.10 3.11 3.12 3.13
110+
pyenv global 3.8 3.9 3.10 3.11 3.12 3.13 3.14
111111
112112
# Verify installations
113113
echo "Installed versions:"
114114
pyenv versions
115-
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
115+
for version in 3.8 3.9 3.10 3.11 3.12 3.13 3.14; do
116116
if ! pyenv versions --bare | grep -q "^$version"; then
117117
echo "ERROR: Python $version is not installed!"
118118
exit 1
@@ -128,7 +128,7 @@ jobs:
128128
rustup component add --toolchain nightly-2025-07-07 rust-src
129129
130130
# Install Python dependencies
131-
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
131+
for version in 3.8 3.9 3.10 3.11 3.12 3.13 3.14; do
132132
echo "Installing dependencies for Python $version"
133133
pyenv shell $version
134134
python -m pip install --upgrade pip
@@ -235,7 +235,7 @@ jobs:
235235
CURRENT_TEST=0
236236
TEST_FAILED=false
237237
238-
for version in 3.9 3.10 3.11 3.12 3.13; do
238+
for version in 3.9 3.10 3.11 3.12 3.13 3.14; do
239239
CURRENT_TEST=$((CURRENT_TEST + 1))
240240
echo "=== Test $CURRENT_TEST/$TOTAL_TESTS: Python $version ==="
241241
echo "Test start time: $(date)"

.github/workflows/build_musllinux_x86_wheels.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ jobs:
9090
pyenv install 3.11:latest
9191
pyenv install 3.12:latest
9292
pyenv install 3.13:latest
93-
pyenv global 3.8 3.9 3.10 3.11 3.12 3.13
93+
pyenv install 3.14:latest
94+
pyenv global 3.8 3.9 3.10 3.11 3.12 3.13 3.14
9495
9596
# Verify installations
9697
echo "Installed versions:"
@@ -100,7 +101,7 @@ jobs:
100101
export PATH="$HOME/.pyenv/bin:$PATH"
101102
eval "$(pyenv init -)"
102103
echo "Verifying all required Python versions are available:"
103-
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
104+
for version in 3.8 3.9 3.10 3.11 3.12 3.13 3.14; do
104105
if ! pyenv versions --bare | grep -q "^$version"; then
105106
echo "ERROR: Python $version is not installed!"
106107
exit 1
@@ -112,7 +113,7 @@ jobs:
112113
run: |
113114
export PATH="$HOME/.pyenv/bin:$PATH"
114115
eval "$(pyenv init -)"
115-
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
116+
for version in 3.8 3.9 3.10 3.11 3.12 3.13 3.14; do
116117
echo "Installing dependencies for Python $version"
117118
pyenv shell $version
118119
python -m pip install --upgrade pip
@@ -237,7 +238,7 @@ jobs:
237238
run: |
238239
export PATH="$HOME/.pyenv/bin:$PATH"
239240
eval "$(pyenv init -)"
240-
for version in 3.9 3.10 3.11 3.12 3.13; do
241+
for version in 3.9 3.10 3.11 3.12 3.13 3.14; do
241242
echo "Testing chdb on Python $version"
242243
pyenv shell $version
243244
python -m pip install dist/*.whl --force-reinstall

0 commit comments

Comments
 (0)