Skip to content

Commit 174eda9

Browse files
committed
fix: use consistent uv pattern for PyYAML installation
- Follow same pattern as other CI jobs: uv venv then uv pip install - Maintain consistency with build dependencies installation pattern - Remove --system flag in favor of virtual environment approach
1 parent 235e7b4 commit 174eda9

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,9 @@ jobs:
9999
cache-dependency-glob: "pyproject.toml.template"
100100

101101
- name: Install PyYAML
102-
run: uv pip install --system PyYAML
102+
run: |
103+
uv venv
104+
uv pip install PyYAML
103105
104106
- name: Validate workflows
105107
run: make validate-all

0 commit comments

Comments
 (0)