From 9377023275b3144c1575b98817e89116452487d3 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 09:10:27 +0000 Subject: [PATCH] Fix: Remove unnecessary PATH modifications and use python -m uv consistently Co-Authored-By: ned.twigg@diffplug.com --- .github/workflows/python-ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index 384d8e07..b0d42497 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -26,8 +26,7 @@ jobs: if: runner.os != 'Windows' shell: bash run: | - curl -LsSf https://astral.sh/uv/install.sh | sh - echo "${HOME}/.local/bin" >> $GITHUB_PATH + python -m pip install uv - name: Install uv (Windows) if: runner.os == 'Windows' shell: pwsh