From e87296f50d9455ac4c6a8573bcb63c0f808f898c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Robert?= Date: Mon, 2 May 2022 20:50:20 +0200 Subject: [PATCH] Merge pull request #3891 from neutrinoceros/upgrade_cbw --- .github/workflows/wheels.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wheels.yaml b/.github/workflows/wheels.yaml index c9ee27601f2..8f50c2563bf 100644 --- a/.github/workflows/wheels.yaml +++ b/.github/workflows/wheels.yaml @@ -7,6 +7,9 @@ on: - stable tags: - 'yt-*' + pull_request: + paths: + - '.github/workflows/wheels.yaml' workflow_dispatch: jobs: @@ -29,14 +32,14 @@ jobs: - uses: actions/checkout@v2 - name: Build wheels for CPython - uses: pypa/cibuildwheel@v2.3.0 + uses: pypa/cibuildwheel@v2.4.0 with: output-dir: dist env: CIBW_BUILD: "cp36-* cp37-* cp38-* cp39-* cp310-*" CIBW_SKIP: "*-musllinux_*" # numpy doesn't have wheels for musllinux so we can't build some quickly and without bloating CIBW_ARCHS_LINUX: "x86_64" - CIBW_ARCHS_MACOS: "x86_64" + CIBW_ARCHS_MACOS: x86_64 arm64 CIBW_ARCHS_WINDOWS: "auto" CIBW_ENVIRONMENT: "LDFLAGS='-static-libstdc++'" CIBW_BUILD_VERBOSITY: 1