cd: wheel build script updated for armv7

This commit is contained in:
Nicolas 2025-11-24 16:38:42 +01:00
parent 1d35c27e66
commit e51a8e549a
1 changed files with 2 additions and 2 deletions

View File

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