From aa3ec60f38b35a1b25e49a837334fa952584bd75 Mon Sep 17 00:00:00 2001 From: Kevin Sheppard Date: Tue, 27 Sep 2022 10:16:07 +0100 Subject: [PATCH 1/2] MAINT: Exclude OSX-3.10.6 --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f2af87ac0..4d49e75b1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,6 +15,10 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macos-latest] python-version: ['3.8', '3.9', '3.10.6'] + # Exclude due to regular failures, retry once 3.10.8 is out + exclude: + - os: macos-latest + python-version: '3.10.6' steps: - uses: actions/checkout@v3 From 9af9f44b49742de79c19c4f892d53433e7caeeea Mon Sep 17 00:00:00 2001 From: Kevin Sheppard Date: Wed, 28 Sep 2022 18:26:06 +0100 Subject: [PATCH 2/2] CI: Change timeout minutes and restore OSX 3.10 --- .github/workflows/test.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4d49e75b1..3a846ab50 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,16 +9,12 @@ env: jobs: released: runs-on: ${{ matrix.os }} - timeout-minutes: 10 + timeout-minutes: 20 strategy: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] python-version: ['3.8', '3.9', '3.10.6'] - # Exclude due to regular failures, retry once 3.10.8 is out - exclude: - - os: macos-latest - python-version: '3.10.6' steps: - uses: actions/checkout@v3