From 2c59f1927da345358be4534518534f028bd9ddca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Dumas?= Date: Tue, 12 Mar 2024 14:47:32 -0700 Subject: [PATCH] Update wheels action. (#28) --- .github/workflows/wheel.yaml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/wheel.yaml b/.github/workflows/wheel.yaml index f807cd3e..fb9ba750 100644 --- a/.github/workflows/wheel.yaml +++ b/.github/workflows/wheel.yaml @@ -25,13 +25,8 @@ jobs: with: xcode-version: '15.2' - - name: Setup Python - uses: actions/setup-python@v5 - with: - python-version: '3.8' - - name: Build wheels - uses: pypa/cibuildwheel@v2.16.5 + uses: pypa/cibuildwheel@v2.17.0 env: CIBW_ARCHS_LINUX: auto64 CIBW_ARCHS_WINDOWS: auto64 @@ -39,7 +34,7 @@ jobs: CIBW_SKIP: "*-musllinux* pp*" CIBW_TEST_COMMAND: "pytest {project}/modules" CIBW_TEST_REQUIRES: pytest - MACOSX_DEPLOYMENT_TARGET: 10.15 + MACOSX_DEPLOYMENT_TARGET: 11.00 CIBW_BUILD_VERBOSITY: 2 - uses: actions/upload-artifact@v4