From 1b137cdd63590ad5769a67cdc650360f07d6c88a Mon Sep 17 00:00:00 2001 From: Peter Sobot Date: Mon, 16 Sep 2024 15:50:33 -0400 Subject: [PATCH] Disable universal wheels to save PyPI space. --- .github/workflows/all.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/all.yml b/.github/workflows/all.yml index e12240e7..00187451 100644 --- a/.github/workflows/all.yml +++ b/.github/workflows/all.yml @@ -698,13 +698,13 @@ jobs: - { os: macos-12, build: cp312-macosx_x86_64 } - { os: macos-12, build: cp313-macosx_x86_64 } - { os: macos-12, build: cp313t-macosx_x86_64 } - - { os: macos-12, build: cp38-macosx_universal2 } - - { os: macos-12, build: cp39-macosx_universal2 } - - { os: macos-12, build: cp310-macosx_universal2 } - - { os: macos-12, build: cp311-macosx_universal2 } - - { os: macos-12, build: cp312-macosx_universal2 } - - { os: macos-12, build: cp313-macosx_universal2 } - - { os: macos-12, build: cp313t-macosx_universal2 } + # - { os: macos-12, build: cp38-macosx_universal2 } + # - { os: macos-12, build: cp39-macosx_universal2 } + # - { os: macos-12, build: cp310-macosx_universal2 } + # - { os: macos-12, build: cp311-macosx_universal2 } + # - { os: macos-12, build: cp312-macosx_universal2 } + # - { os: macos-12, build: cp313-macosx_universal2 } + # - { os: macos-12, build: cp313t-macosx_universal2 } - { os: macos-12, build: cp38-macosx_arm64 } - { os: macos-12, build: cp39-macosx_arm64 } - { os: macos-12, build: cp310-macosx_arm64 } @@ -789,7 +789,7 @@ jobs: CIBW_BUILD: ${{ matrix.build }} CIBW_ARCHS_WINDOWS: auto # Allow 32-bit Windows builds CIBW_ARCHS_LINUX: auto64 aarch64 # Useful for building linux images with Apple Silicon - CIBW_ARCHS_MACOS: x86_64 universal2 arm64 # Support Apple Silicon + CIBW_ARCHS_MACOS: x86_64 arm64 # Support Apple Silicon # on macOS and with Python 3.10: building NumPy from source fails without these options: CIBW_ENVIRONMENT: NPY_BLAS_ORDER="" NPY_LAPACK_ORDER="" CIBW_BUILD="${{ matrix.build }}" CIBW_REPAIR_WHEEL_COMMAND_LINUX: pip install auditwheel-symbols && (auditwheel repair -w {dest_dir} {wheel} || auditwheel-symbols --manylinux 2010 {wheel})