ci: x86 removed from wheel build script

This commit is contained in:
Nicolas Kruse 2025-11-14 19:41:11 +01:00
parent c25ecac86e
commit 68186fbf69
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" #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/"