Skip to content

Commit ab676ad

Browse files
committed
Install setuptools explicitly for Python 3.12.0
1 parent c69409d commit ab676ad

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build_wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
clang++ --version
8888
- name: Run chdb/build.sh
8989
run: |
90-
python3 -m pip install pybind11
90+
python3 -m pip install pybind11 setuptools
9191
export CC=/usr/bin/clang
9292
export CXX=/usr/bin/clang++
9393
bash ./chdb/build.sh
@@ -207,7 +207,7 @@ jobs:
207207
- name: Run chdb/build.sh
208208
timeout-minutes: 300
209209
run: |
210-
python3 -m pip install pybind11
210+
python3 -m pip install pybind11 setuptools
211211
export PATH=$(brew --prefix llvm@16)/bin:/usr/local/opt/grep/libexec/gnubin:/usr/local/opt/binutils/bin:$PATH:/usr/local/opt/findutils/libexec/gnubin
212212
export CC=$(brew --prefix llvm@16)/bin/clang
213213
export CXX=$(brew --prefix llvm@16)/bin/clang++

chdb/build_linux_arm64.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ for PY_VER in ${PYTHON_VERSIONS}; do
1010
cd ${PROJ_DIR}
1111
pyenv local "${PY_VER}"
1212
python3 --version
13-
python3 -m pip install pybind11
13+
python3 -m pip install pybind11 setuptools
1414
export CC=/usr/bin/clang
1515
export CXX=/usr/bin/clang++
1616
# Install universal2 pkg

chdb/build_mac_arm64.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ for PY_VER in 3.9.13 3.10.11 3.11.3 3.12.0; do
7373
exit 1
7474
fi
7575

76-
python3 -m pip install -U pybind11 wheel build tox psutil
76+
python3 -m pip install -U pybind11 wheel build tox psutil setuptools
7777
rm -rf ${PROJ_DIR}/buildlib
7878

7979
${PROJ_DIR}/chdb/build.sh

0 commit comments

Comments
 (0)