From 451c5fcb878215934a45c4dfd5015119f306db52 Mon Sep 17 00:00:00 2001 From: Paul Larsen Date: Thu, 15 Jun 2023 15:35:01 +0200 Subject: [PATCH] Update matrix os x python versions to include higher python versions and avoid a python 3.6 ubuntu error about not having a compatible arch architecture. --- .github/workflows/ci-cd.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 39ba348..69a7d26 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -12,19 +12,15 @@ jobs: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: os: ["ubuntu-latest", "macos-latest", "windows-latest", "windows-2019"] - python-version: ["3.6", "3.7", "3.8", "3.9"] + python-version: ["3.7", "3.8", "3.9", "3.10"] + exclude: - # Due to pytest install error - - os: windows-latest - python-version: "3.6" # Due to nbconvert TypeError - os: windows-latest python-version: "3.7" - # Due to pytest install error - - os: windows-2019 - python-version: "3.6" # Due to nbconvert TypeError - os: windows-2019 python-version: "3.7"