cd: wheel build script updated for armv7

This commit is contained in:
Nicolas 2025-11-24 16:38:42 +01:00 committed by Nicolas Kruse
parent 4a8f758a45
commit afa8985a7f
1 changed files with 2 additions and 2 deletions

View File

@ -54,9 +54,9 @@ jobs:
- name: Build wheels - name: Build wheels
uses: pypa/cibuildwheel@v3.2.0 uses: pypa/cibuildwheel@v3.2.0
env: env:
CIBW_ARCHS_LINUX: "x86_64 aarch64 i686" CIBW_ARCHS_LINUX: "x86_64 aarch64 armv7l" # i686
CIBW_ARCHS_MACOS: "x86_64 universal2" CIBW_ARCHS_MACOS: "x86_64 universal2"
CIBW_ARCHS_WINDOWS: "AMD64 x86" CIBW_ARCHS_WINDOWS: "AMD64" # x86
CIBW_TEST_REQUIRES: "pytest" CIBW_TEST_REQUIRES: "pytest"
CIBW_TEST_COMMAND: "pytest -m \"not runner\" {package}/tests/" CIBW_TEST_COMMAND: "pytest -m \"not runner\" {package}/tests/"