From 8f507ccebb70d7b58f77dfa87f0e6ac5a589763f Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 11 Feb 2024 13:10:20 +0100 Subject: [PATCH] Temporarily drop testing on Py2.7 (#8) --- .github/workflows/tox-gh.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tox-gh.yml b/.github/workflows/tox-gh.yml index 3aff7b2..a480079 100644 --- a/.github/workflows/tox-gh.yml +++ b/.github/workflows/tox-gh.yml @@ -4,11 +4,12 @@ on: jobs: build: - # ubuntu-22 doesnt support Python 2.7 + # ubuntu-22 doesnt support Python 3.5 and 3.6 runs-on: ubuntu-20.04 strategy: + fail-fast: false matrix: - python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, '3.10'] + python-version: [3.5, 3.6, 3.7, 3.8, 3.9, '3.10'] name: main steps: - uses: actions/checkout@v4