From 472d302ef017d09e2440b7022f9a5a2177ad9e4e Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Sat, 30 Mar 2024 09:55:34 -0500 Subject: [PATCH] Fix extra CI checks on macOS (#2735) Alternative to https://github.com/astral-sh/uv/pull/2729 since we're having problems with the Homebrew Python. --- .github/workflows/ci.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f6f62e81..69be00a6c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -256,9 +256,6 @@ jobs: steps: - uses: actions/checkout@v4 - - name: "Install Python" - run: brew install python@3.8 - - name: "Download binary" uses: actions/download-artifact@v4 with: @@ -456,9 +453,6 @@ jobs: steps: - uses: actions/checkout@v4 - - name: "Install Python" - run: brew install python@3.8 - - name: "Download binary" uses: actions/download-artifact@v4 with: @@ -467,11 +461,13 @@ jobs: - name: "Prepare binary" run: chmod +x ./uv + # This should be the macOS system Python + # We'd like to test with Homebrew but this Python takes precedence in system Python discovery - name: "Print Python path" run: echo $(which python3) - name: "Validate global Python install" - run: python3 scripts/check_system_python.py --uv ./uv + run: python3 scripts/check_system_python.py --uv ./uv --externally-managed system-test-macos-x86_64: needs: build-binary-macos-x86_64