Skip to content

Commit 322cbb1

Browse files
committed
Fix CI build by upgrading cibuildwheel and pre-installing virtualenv
1 parent c31ad63 commit 322cbb1

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/publish.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,16 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v4
1919

20+
- name: Install dependencies
21+
run: pip install virtualenv
22+
2023
- name: Build wheels
21-
uses: pypa/cibuildwheel@v2.16.5
24+
uses: pypa/cibuildwheel@v2.21.3
2225
env:
2326
# Configure cibuildwheel
24-
CIBW_SKIP: "pp* *-musllinux*" # Skip PyPy and Musl Linux to save time/space if not needed
27+
CIBW_SKIP: "pp* *-musllinux*" # Skip PyPy and Musl Linux
2528
CIBW_ARCHS_MACOS: "x86_64 arm64" # Universal Mac support
26-
# C++17 support verification
29+
# Ensure dependencies are available
2730
CIBW_BEFORE_BUILD: "pip install pybind11"
2831

2932
- uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)