From 8b4df41e2766b05e6c17886ec44e30a24d68d387 Mon Sep 17 00:00:00 2001 From: apetrynet Date: Thu, 13 Jun 2024 19:44:50 +0200 Subject: [PATCH] added exclusion of older python versions for macos-latest Signed-off-by: apetrynet --- .github/workflows/ci.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b77e049..0e31217 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -25,6 +25,11 @@ jobs: python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ] os: [ ubuntu-latest, macos-latest, windows-latest ] otio-version: [ "0.17.0", "main" ] + exclude: + - { os: macos-latest, python-version: 3.7 } + - { os: macos-latest, python-version: 3.8 } + - { os: macos-latest, python-version: 3.9 } + runs-on: ${{ matrix.os }}