From f7b934b30679cbc4eb47bde27dcca97f5d92539b Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 21 Sep 2025 16:21:32 +0200 Subject: [PATCH 1/2] chore(ci): try to not prune uv cache --- .github/workflows/ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f8a3c38e..2ecb06e90 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,6 @@ jobs: python-version: ${{ matrix.python-version }} cache-dependency-glob: "requirements**.txt" cache-suffix: "${{ matrix.python-version }}" - prune-cache: false - name: Installation - *nix run: | @@ -166,7 +165,6 @@ jobs: python-version: ${{ matrix.python-version }} cache-dependency-glob: "requirements**.txt" cache-suffix: "${{ matrix.python-version }}" - prune-cache: false - name: Installation - macOS (Brew) run: | @@ -278,7 +276,6 @@ jobs: python-version: ${{ matrix.python-version }} cache-dependency-glob: "requirements**.txt" cache-suffix: "${{ matrix.python-version }}" - prune-cache: false - name: Installation run: | @@ -428,7 +425,6 @@ jobs: python-version: "3.12" cache-dependency-glob: "requirements**.txt" cache-suffix: "3.12" - prune-cache: false - name: Installation - *nix run: | From a7c4ec6eafc6c9b75f86b904bb61f43e0c7abcc5 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 21 Sep 2025 16:51:13 +0200 Subject: [PATCH 2/2] chore: try without brew python fixes Should work now since we're using UV... --- .github/workflows/ci.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2ecb06e90..11f8a8cad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -170,24 +170,6 @@ jobs: run: | # brew update # TODO: Should be the brew upgrade - # homebrew fails to update python due to unlinking failures - # 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/idle3.12 || 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 libomp - name: Installation (python)