Skip to content

Fix failing Windows wheel builds #55

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Aug 22, 2025
8 changes: 8 additions & 0 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ jobs:
with:
python-version: 3.12

- name: Install vcpkg on Windows
run: |
cd C:\
rm -r -fo 'C:\vcpkg'
git clone https://github.com/microsoft/vcpkg --branch 2024.12.16
cd vcpkg
.\bootstrap-vcpkg.bat

- name: Build wheels on Windows
run: pipx run cibuildwheel --output-dir wheelhouse
env:
Expand Down
Loading