From 82704e10b8525545c041c948a0774db8478c95c0 Mon Sep 17 00:00:00 2001 From: Chris Wright Date: Thu, 15 Aug 2024 10:24:04 +0100 Subject: [PATCH] more actions fiddling --- .github/workflows/python.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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