From a7a221570eaf87d2a9ec6ee899c351b7d6b55526 Mon Sep 17 00:00:00 2001 From: Lorenzo Busoni Date: Tue, 22 Feb 2022 19:58:22 +0100 Subject: [PATCH] remove python2 from actions --- .github/workflows/pythonpackage.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 85a5059..767686f 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -16,15 +16,11 @@ jobs: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: - os: [ubuntu-latest, windows-latest] - python-version: ["2.7", "3.8", "3.9"] - # We need to skip python 2 and 3.6 with macos - include: - - os: macos-latest - python-version: "3.8" - - os: macos-latest - python-version: "3.9" + os: [ubuntu-latest, windows-latest, macos-latest] + python-version: ["3.7", "3.8", "3.9", "3.10"] + steps: - uses: actions/checkout@v2