From 79ac00386513e69f90adf05b0e6c289bac29b931 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Wed, 11 Dec 2024 16:01:35 -0600 Subject: [PATCH] build for 32-bit arm --- .github/workflows/wheels.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index dccbcf7..3068304 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -37,13 +37,13 @@ jobs: build_wheels: - name: Wheels on ${{ matrix.os }}${{ matrix.extra }} + name: Wheels on ${{ matrix.os }} ${{ matrix.arch }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: ["ubuntu-latest"] - arch_linux: ["aarch64"] + arch: ["aarch64", "armv7l"] steps: - uses: actions/checkout@v4 with: @@ -57,9 +57,10 @@ jobs: - uses: pypa/cibuildwheel@v2.22.0 env: - CIBW_ARCHS_LINUX: ${{ matrix.arch_linux }} + CIBW_ARCHS_LINUX: ${{ matrix.arch }} CIBW_BUILD: "cp311-manylinux* cp312-manylinux* cp313-manylinux*" CIBW_MANYLINUX_AARCH64_IMAGE: "manylinux_2_28" + CIBW_MANYLINUX_ARMV7L_IMAGE: "manylinux_2_28" - name: Verify clean directory run: git diff --exit-code shell: bash