From 0625b565883a6f04988b4d3b085c0d06a7694ac6 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Sat, 30 Mar 2024 09:01:47 -0500 Subject: [PATCH] Use standard pip instead of pipx An attempt to solve macOS CI failures e.g. https://github.com/astral-sh/uv/actions/runs/8488022849/job/23256538175 --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0005611d764c..2f6f62e81ec3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -81,11 +81,10 @@ jobs: with: python-version: "3.12" - - name: "Install pipx" - run: pip install pipx - - name: "Install required Python versions" - run: pipx run scripts/bootstrap/install.py + run: | + python -m pip install "zstandard==0.22.0" + python scripts/bootstrap/install.py - name: "Install Rust toolchain" run: rustup show