Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
Udopia committed Nov 8, 2024
1 parent 61f3cc1 commit 632c084
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_wheels2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
# - uses: actions/setup-python@v5

- name: Build wheels
uses: pypa/cibuildwheel@v2.21.3
uses: pypa/cibuildwheel@v2.17.0
env:
CIBW_BUILD_VERBOSITY: 1
CIBW_BEFORE_ALL_LINUX: bash ./instdeps.sh
Expand Down
17 changes: 9 additions & 8 deletions instdeps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,18 @@ if command -v dnf > /dev/null; then
dnf install -y libarchive-devel
dnf install -y cmake
dnf groupinstall -y "Development Tools"
git clone https://github.com/pybind/pybind11.git
cd pybind11
mkdir build
cd build
cmake ..
make -j6 install
elif command -v apt > /dev/null; then
sudo apt update
sudo apt install -y libarchive-dev
sudo apt install -y cmake
sudo apt install -y build-essential
sudo apt install -y pybind11-dev
fi
pip install scikit-build
# cd /project
git clone https://github.com/pybind/pybind11.git
cd pybind11
mkdir build
cd build
cmake ..
make -j6 install

pip install scikit-build

0 comments on commit 632c084

Please sign in to comment.