From a3b4f6aa0e6483a76d392e214da2a21749880636 Mon Sep 17 00:00:00 2001 From: mmb L <7960706+mammothb@users.noreply.github.com> Date: Sat, 7 Sep 2024 23:12:18 +0800 Subject: [PATCH] Build: Set cibw_build value (#13) * set cibw_build value * change runner image to macos-13 --- .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 1593c02..8fc4f48 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -69,7 +69,7 @@ jobs: build_platform: - [ubuntu-latest, manylinux_x86_64] - [ubuntu-latest, musllinux_x86_64] - - [macos-latest, macosx_x86_64] + - [macos-13, macosx_x86_64] - [macos-latest, macosx_arm64] - [windows-latest, win_amd64] python: @@ -86,6 +86,8 @@ jobs: - name: Build wheel uses: pypa/cibuildwheel@v2.20.0 + env: + CIBW_BUILD: ${{ matrix.python[0] }}-${{ matrix.build_platform[1] }} with: output-dir: wheelhouse