From 6eae8128ad1f10bbe218d35b83e5b602a9d63a44 Mon Sep 17 00:00:00 2001 From: Christopher League Date: Sun, 19 May 2024 08:59:36 -0400 Subject: [PATCH 1/2] In Github CI script, update setup-python Probably makes no difference on Python 3.6 failing on MacOS. (Most likely the fix is just to drop 3.6.) --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9386f2708..670b421af 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -51,7 +51,7 @@ jobs: gawk \ gnu-sed \ pkg-config - - uses: actions/setup-python@v5.0.0 + - uses: actions/setup-python@v5.1.0 with: python-version: ${{ matrix.python-version }} - name: "Software Install - Python" From e3b6daef5e7137d50a89a269cc565d1ee9cbad7a Mon Sep 17 00:00:00 2001 From: Christopher League Date: Wed, 29 May 2024 11:10:31 -0400 Subject: [PATCH 2/2] Don't test with Python 3.6 on MacOS Python 3.6 is no longer supported on macos-latest build image, and 3.6 is EOL anyway. (So prefer to ditch 3.6 rather than pin macos to an earlier image.) --- .github/workflows/main.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 670b421af..fb5b08ac3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,8 +24,6 @@ jobs: include: - os: ubuntu-20.04 python-version: '3.6' - - os: macos-latest - python-version: '3.6' fail-fast: false steps: - name: "Software Install - Ubuntu"