From 6fe8d06d9eab843c6e29d7ab3ba494f48e659820 Mon Sep 17 00:00:00 2001 From: gesellkammer Date: Wed, 17 Apr 2024 17:31:08 +0200 Subject: [PATCH] update build --- .github/workflows/wheels.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 0ac7038..938820b 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -21,11 +21,16 @@ jobs: run: python -m pip install cibuildwheel twine virtualenv numpy - name: Build wheels - uses: pypa/cibuildwheel@v2.9.0 env: - CIBW_BUILD: 'cp39-* cp310-* cp311*' - CIBW_SKIP: 'pp* *686* *-musllinux_*' - CIBW_ARCHS_MACOS: 'x86_64 arm64' + CIBW_BUILD: 'cp39-* cp310-* cp311-* cp312-*' + # We don't build for arm because the fftw lib is still not included + # See the cirrus build + CIBW_ARCHS_MACOS: 'x86_64' + CIBW_SKIP: 'pp* *686* *-musllinux_*' + CIBW_BUILD_VERBOSITY: 2 + CIBW_REPAIR_WHEEL_COMMAND_MACOS: delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel} + run: | + python -m cibuildwheel --output-dir wheelhouse - uses: actions/upload-artifact@v3 with: