diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index fa64550..a4c2aec 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -41,8 +41,13 @@ jobs: uses: pypa/cibuildwheel@v2.22 env: MACOSX_DEPLOYMENT_TARGET: 14.0 - - name: CI Build Wheel - if: matrix.os != 'macos-14' + - name: CI Build Wheel macos-13 + if: matrix.os == 'macos-13' + uses: pypa/cibuildwheel@v2.22 + env: + MACOSX_DEPLOYMENT_TARGET: 13.0 + - name: CI Build Wheel linux + if: matrix.os == 'ubuntu-24.04' uses: pypa/cibuildwheel@v2.22 - name: Upload uses: actions/upload-artifact@v4