From 34c5c68a91d051e9f7d283bb4bf04770dbfbfcfc Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 9 Dec 2023 14:37:44 +0100 Subject: [PATCH 1/3] Add macos-13 to ci matrix --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f06d7c8ef..4977d0767 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -126,7 +126,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ "macos-latest" ] + os: [ "macos-latest", "macos-13" ] python-version: ["3.9", "3.10", "3.11"] steps: From b4e8122fd309ba7408f187483a5bc4bf0d86ca5f Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 19 Dec 2023 19:55:18 +0100 Subject: [PATCH 2/3] Attempt to properly remove 3.12 symlinks --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4977d0767..d96e6a0e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -164,14 +164,18 @@ jobs: # https://github.com/actions/runner-images/issues/6817 rm /usr/local/bin/2to3 || true rm /usr/local/bin/2to3-3.11 || true + rm /usr/local/bin/2to3-3.12 || true rm /usr/local/bin/idle3 || true rm /usr/local/bin/idle3.11 || true rm /usr/local/bin/pydoc3 || true rm /usr/local/bin/pydoc3.11 || true + rm /usr/local/bin/pydoc3.12 || true rm /usr/local/bin/python3 || true rm /usr/local/bin/python3.11 || true + rm /usr/local/bin/python3.12 || true rm /usr/local/bin/python3-config || true rm /usr/local/bin/python3.11-config || true + rm /usr/local/bin/python3.12-config || true brew install hdf5 c-blosc libomp python -m pip install --upgrade pip wheel From 71b777ef34c8ff9a5f43a5467d072a5f7e41e316 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 19 Dec 2023 21:51:31 +0100 Subject: [PATCH 3/3] Fix missing rm line --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d96e6a0e1..4f8ece4cc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -167,6 +167,7 @@ jobs: rm /usr/local/bin/2to3-3.12 || true rm /usr/local/bin/idle3 || true rm /usr/local/bin/idle3.11 || true + rm /usr/local/bin/idle3.12 || true rm /usr/local/bin/pydoc3 || true rm /usr/local/bin/pydoc3.11 || true rm /usr/local/bin/pydoc3.12 || true