diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 94f888d8..acbd6248 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -7,16 +7,16 @@ on: [push, pull_request] jobs: build_wheels: - name: Build wheels on ${{ matrix.os }} + name: Wheel ${{ matrix.python }}-${{ matrix.buildplat[1] }} runs-on: ${{ matrix.buildplat[0] }} strategy: fail-fast: false matrix: buildplat: - [ubuntu-latest, manylinux_x86_64, auto] - - [macos-latest, macosx_x86_64, x86_64] - - [macos-latest, macosx_arm64, arm64] - python: ["cp38", "cp39", "cp310", "cp11", "cp12"] + - [macos-13, macosx_x86_64, x86_64] + - [macos-14, macosx_arm64, arm64] + python: ["cp38", "cp39", "cp310", "cp311", "cp312"] steps: - uses: actions/checkout@v4