Skip to content
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

Bump pypa/cibuildwheel from 2.19.2 to 2.21.2 in the actions group across 1 directory #18

Merged
merged 3 commits into from
Oct 5, 2024
Merged
Changes from all commits
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
10 changes: 4 additions & 6 deletions .github/workflows/build_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,21 +100,19 @@ jobs:
submodules: true
fetch-depth: 0

- name: Build aarch64?
- name: Build aarch64 and armv7l?
if: github.event_name == 'release' || github.event_name == 'workflow_dispatch'
run: echo "BUILD_ARCH=aarch64 ${{ env.BUILD_ARCH }}" >> $GITHUB_ENV
run: echo "BUILD_ARCH=aarch64 armv7l ${{ env.BUILD_ARCH }}" >> $GITHUB_ENV

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
if: contains(env.BUILD_ARCH, 'aarch64')
with:
platforms: aarch64

- name: Build binary wheels with cibuildwheels
uses: pypa/cibuildwheel@v2.19.2
uses: pypa/cibuildwheel@v2.21.2
env:
CIBW_ARCHS_LINUX: ${{ env.BUILD_ARCH }}
CIBW_SKIP: cp36* pp* *musllinux*
CIBW_SKIP: cp36* pp* *ppc64le *s390x

- name: Move cross-compiled wheels to dist folder
run: |
Expand Down