Skip to content

Commit

Permalink
Fix building the wheel for windows
Browse files Browse the repository at this point in the history
The CI job that builds the wheel for Windows fails. Try to fix it.
  • Loading branch information
gerzse committed Jul 11, 2024
1 parent f4dd081 commit a6f67cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/REUSABLE-wheeler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macos-latest]
os: [ubuntu-20.04, windows-latest, macos-latest]
env:
CIBW_ARCHS_MACOS: "x86_64 universal2 arm64"
MACOSX_DEPLOYMENT_TARGET: "10.15"
Expand All @@ -37,7 +37,7 @@ jobs:
platforms: all

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.2
uses: pypa/cibuildwheel@v2.19.2
env:
# configure cibuildwheel to build native archs ('auto'), and some
# emulated ones
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
path: artifacts/linux
- uses: actions/download-artifact@v3
with:
name: windows-2019-wheels
name: windows-latest-wheels
path: artifacts/windows
- uses: actions/download-artifact@v3
with:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ MANIFEST
.venv
**/*.so
hiredis.egg-info
.idea

0 comments on commit a6f67cf

Please sign in to comment.