Skip to content

Commit

Permalink
Install setuptools explicitly for Python 3.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
auxten committed Nov 16, 2023
1 parent 0c66802 commit d17020f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
clang++ --version
- name: Run chdb/build.sh
run: |
python3 -m pip install pybind11
python3 -m pip install pybind11 setuptools
export CC=/usr/bin/clang
export CXX=/usr/bin/clang++
bash ./chdb/build.sh
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
- name: Run chdb/build.sh
timeout-minutes: 300
run: |
python3 -m pip install pybind11
python3 -m pip install pybind11 setuptools
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
export CC=$(brew --prefix llvm@16)/bin/clang
export CXX=$(brew --prefix llvm@16)/bin/clang++
Expand Down
2 changes: 1 addition & 1 deletion chdb/build_linux_arm64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ for PY_VER in ${PYTHON_VERSIONS}; do
cd ${PROJ_DIR}
pyenv local "${PY_VER}"
python3 --version
python3 -m pip install pybind11
python3 -m pip install pybind11 setuptools
export CC=/usr/bin/clang
export CXX=/usr/bin/clang++
# Install universal2 pkg
Expand Down
2 changes: 1 addition & 1 deletion chdb/build_mac_arm64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ for PY_VER in 3.9.13 3.10.11 3.11.3 3.12.0; do
exit 1
fi

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

${PROJ_DIR}/chdb/build.sh
Expand Down

0 comments on commit d17020f

Please sign in to comment.