diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 96d659ee17..bf62fc285d 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -48,6 +48,9 @@ jobs: - name: "Compile Dependency Versions" run: | curl -LsSf https://astral.sh/uv/install.sh | sh + if [ "${{ matrix.os }}" == "macos-13" ]; then + source $HOME/.local/bin/env + fi uv pip compile requirements/dev-all.txt > requirements-latest.txt - name: "Cache python environment" diff --git a/.github/workflows/update-cache.yml b/.github/workflows/update-cache.yml index 978f6ab4d8..3243bc4dc2 100644 --- a/.github/workflows/update-cache.yml +++ b/.github/workflows/update-cache.yml @@ -28,6 +28,9 @@ jobs: - name: "Compile Dependency Versions" run: | curl -LsSf https://astral.sh/uv/install.sh | sh + if [ "${{ matrix.os }}" == "macos-13" ]; then + source $HOME/.local/bin/env + fi uv pip compile requirements/dev-all.txt > requirements-latest.txt - name: "Cache python environment"