Skip to content

Commit

Permalink
add uv to path for mac pipeline (#2590)
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisbader authored Nov 10, 2024
1 parent a674ed2 commit dec18b2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/update-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit dec18b2

Please sign in to comment.