From 09455d0ce312e8c66dc740a9cceb61f1faa9a52d Mon Sep 17 00:00:00 2001 From: Ethan Steinberg Date: Wed, 7 Aug 2024 08:44:45 -0700 Subject: [PATCH] Even better build --- .github/workflows/python-build.yml | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/.github/workflows/python-build.yml b/.github/workflows/python-build.yml index 92f6ed7..1e17376 100644 --- a/.github/workflows/python-build.yml +++ b/.github/workflows/python-build.yml @@ -8,30 +8,18 @@ jobs: strategy: fail-fast: true matrix: - os: ["ubuntu-latest"] - python-version: ["3.10"] + os: ["ubuntu-latest", "macos-13", "macos-14"] steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 - with: - python-version: ${{ matrix.python-version }} + - uses: actions/checkout@v4 - name: Build wheels linux uses: pypa/cibuildwheel@v2.19.2 - if: matrix.os == 'ubuntu-latest' env: + CIBW_SKIP: '*-musllinux_* pp*' + CIBW_ARCHS: auto64 CIBW_BEFORE_ALL_LINUX: bash build/linux_setup.sh - CIBW_ARCHS_LINUX: x86_64 - CIBW_SKIP: '*-musllinux_*' - - - name: Build wheels mac - uses: pypa/cibuildwheel@v2.19.2 - if: matrix.os == 'macos-12' - env: - CIBW_ENVIRONMENT: MACOSX_DEPLOYMENT_TARGET=10.14 - CIBW_ARCHS_MACOS: x86_64 arm64 + CIBW_ENVIRONMENT: MACOSX_DEPLOYMENT_TARGET=12 - uses: actions/upload-artifact@v4 with: