From 028c3115799eed4f7c0a1f77e3a796e1eebed2bf Mon Sep 17 00:00:00 2001 From: Mike Boyle Date: Mon, 30 Sep 2024 16:30:51 -0400 Subject: [PATCH] Format CIBW_SKIPs #major --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e5cb0ba..086103f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -79,18 +79,18 @@ jobs: archs: "aarch64" env: + CIBW_ARCHS: ${{matrix.archs}} + CIBW_ARCHS_MACOS: "x86_64 universal2 arm64" + CIBW_BEFORE_BUILD: python -c "print(('#'*130+'\n')*10)" && python -m pip install "numpy>=2.0,<3" + CIBW_TEST_REQUIRES: pytest pytest-cov + CIBW_TEST_COMMAND: "pytest {project}/tests" + CIBW_SKIP: "*-win32 *-manylinux_i686 cp36-* cp37-* cp38-* cp39-* pp* *-musllinux* cp313-*" # Exclude 32-bit builds: *-win32 *-manylinux_i686 # Exclude python versions not supported by numpy: cp36-* cp37-* cp38-* cp39-* pp* # Exclude musllinux builds: *-musllinux* # Exclude python versions not yet supported by numba: cp313-* # https://numpy.org/neps/nep-0029-deprecation_policy.html # https://numba.readthedocs.io/en/stable/user/installing.html#numba-support-info - CIBW_SKIP: *-win32 *-manylinux_i686 cp36-* cp37-* cp38-* cp39-* pp* *-musllinux* cp313-* - CIBW_ARCHS: ${{matrix.archs}} - CIBW_ARCHS_MACOS: "x86_64 universal2 arm64" - CIBW_BEFORE_BUILD: python -c "print(('#'*130+'\n')*10)" && python -m pip install "numpy>=2.0,<3" - CIBW_TEST_REQUIRES: pytest pytest-cov - CIBW_TEST_COMMAND: "pytest {project}/tests" steps: - name: Set up QEMU