8000 update cibuildwheel to v2.23.3 by methane · Pull Request #638 · msgpack/msgpack-python · GitHub
[go: up one dir, main page]

Skip to content

update cibuildwheel to v2.23.3 #638

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 2 commits into from
Jun 1, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
update cibuildwheel
  • Loading branch information
methane committed May 31, 2025
commit 04b78571c37587d9bd0890d976f2a433fab7b863
15 changes: 4 additions & 11 deletions .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,12 @@ jobs:
build_wheels:
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
# macos-13 is for intel
os: ["ubuntu-24.04", "ubuntu-24.04-arm", "windows-latest", "macos-13", "macos-latest"]
runs-on: ${{ matrix.os }}
name: Build wheels on ${{ matrix.os }}

steps:
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all

- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
Expand All @@ -32,13 +27,11 @@ jobs:
make cython

- name: Build
uses: pypa/cibuildwheel@v2.20.0
uses: pypa/cibuildwheel@v2.23.3
env:
CIBW_TEST_REQUIRES: "pytest"
CIBW_TEST_COMMAND: "pytest {package}/test"
CIBW_ARCHS_LINUX: auto aarch64
CIBW_ARCHS_MACOS: x86_64 universal2 arm64
CIBW_SKIP: "pp* cp38-macosx_*"
CIBW_SKIP: "pp*"

- name: Build sdist
if: runner.os == 'Linux'
Expand Down
Loading
0