From 0a5a3a9d243e754fc96df011b6c1a48fd2a0763b Mon Sep 17 00:00:00 2001 From: Yasha Bubnov Date: Sat, 24 Feb 2024 21:02:50 +0100 Subject: [PATCH] Build all archs (#23) This patch allows to build all architectures of the wheel. --- .github/workflows/wheels.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/wheels.yaml b/.github/workflows/wheels.yaml index 671e743..49d79a4 100644 --- a/.github/workflows/wheels.yaml +++ b/.github/workflows/wheels.yaml @@ -10,7 +10,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - cibw_arch: ['x86_64', 'aarch64', 'arm64', 'universal2'] + cibw_arch: ['all'] runs-on: ${{ matrix.os }}