From b3a0baf536ee0ca095d41807fd582e8dcfc2a99e Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Fri, 15 Mar 2024 23:29:41 -0700 Subject: [PATCH] .github/workflows/wheels.yml: Use cibuildwheel==2.17.0, add macos-14 (arm64) build --- .github/workflows/wheels.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 9a5016f..203fec6 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -55,6 +55,8 @@ jobs: arch: i686 - os: macos-latest arch: auto + - os: macos-14 + arch: auto env: # SPKGs to install as system packages SPKGS: _bootstrap _prereq @@ -95,7 +97,7 @@ jobs: mkdir -p unpacked for pkg in cypari2; do (cd unpacked && tar xfz - ) < dist/$pkg*.tar.gz - pipx run cibuildwheel==2.16.0 unpacked/$pkg* + pipx run cibuildwheel==2.17.0 unpacked/$pkg* done - uses: actions/upload-artifact@v3