From 08dfaa6d6bd9dfae7ce369b1e2d7540dba368725 Mon Sep 17 00:00:00 2001 From: apetrynet Date: Thu, 13 Jun 2024 22:58:09 +0200 Subject: [PATCH] pinned macos-13 to make use of pre-built wheels removed exclusion of python versions for macos-latest Signed-off-by: apetrynet --- .github/workflows/ci.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0795b41..5e4893a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -64,13 +64,11 @@ jobs: plugin_name: "otio_aaf_plugin" strategy: matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + # Use macos-13 so we'll be on intel hardware and can pull a pre-built wheel + # When OTIO has an Apple Silicon build we can switch back to macos-latest for that version + os: [ubuntu-latest, macos-13, windows-latest] otio-version: ["main", "0.17.0"] python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] - exclude: - - { os: macos-latest, python-version: 3.7 } - - { os: macos-latest, python-version: 3.8 } - - { os: macos-latest, python-version: 3.9 } name: ${{ matrix.os }} py-${{ matrix.python-version }} otio-${{ matrix.otio-version }} runs-on: ${{ matrix.os }}