Skip to content

Commit ed882d5

Browse files
abrichrclaude
andcommitted
fix: remove --system flag from uv pip install in CI
The --system flag prevents uv from using virtual environments, which causes failures on macOS with Homebrew's externally-managed Python. Removing the flag allows uv to handle virtual environments automatically, fixing the CI error while maintaining the same functionality. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent ecfa444 commit ed882d5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/screenshots.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ jobs:
5050
- name: Install openadapt-capture
5151
working-directory: openadapt-capture
5252
run: |
53-
uv pip install -e . --system
53+
uv pip install -e .
5454
5555
- name: Install openadapt-viewer with screenshots extra
5656
working-directory: openadapt-viewer
5757
run: |
58-
uv pip install -e ".[screenshots]" --system
58+
uv pip install -e ".[screenshots]"
5959
6060
- name: Install Playwright browsers
6161
working-directory: openadapt-viewer

0 commit comments

Comments
 (0)