From 7cfcc8e9c658ff90c65d70650e8725d4a17b6c38 Mon Sep 17 00:00:00 2001 From: Stuart Longland Date: Sun, 26 May 2024 21:21:23 +1000 Subject: [PATCH] github actions: Temporarily disable Python 3.5 for now A certificate issue is preventing `pip` from installing packages. Disable for now while we wait and see if the Github team can fix their action or suggest changes to how it is used. If they can't fix it (and lets face it, Python 3.5 is very ancient now, it isn't in supported versions of Linux or *BSD), we'll bump the minimum release to Python 3.6. https://github.com/actions/setup-python/issues/866 --- .github/workflows/main.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6c5811e..f081a22 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,7 +26,8 @@ jobs: strategy: matrix: python: - - "3.5" + #- "3.5" -- TODO: reinstate if pip issue is fixed + # https://github.com/actions/setup-python/issues/866 - "3.11" - "3.12" platform: @@ -36,14 +37,14 @@ jobs: # probably work on Mac and Windows too. But if an OS-specific bug does # slip through, we should catch it in pre-release testing. - ubuntu-latest - exclude: - # Python 3.5 does not run on ubuntu-latest - - python: "3.5" - platform: ubuntu-latest - include: - - python: "3.5" - platform: ubuntu-20.04 - skip-coverage: true + #exclude: + ## Python 3.5 does not run on ubuntu-latest + #- python: "3.5" + # platform: ubuntu-latest + #include: + #- python: "3.5" + # platform: ubuntu-20.04 + # skip-coverage: true with: python-version: ${{ matrix.python }} platform: ${{ matrix.platform }}