Skip to content

Commit dba1a62

Browse files
committed
Use venv for uv to fix 'failed to create directory'
1 parent 8fb2add commit dba1a62

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/doc.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ jobs:
3232
- name: Install dependencies
3333
run: |
3434
python -m pip install uv
35-
python -m uv pip install --system -e ".[d]"
36-
python -m uv pip install --system -r "docs/requirements.txt"
35+
python -m uv venv
36+
python -m uv pip install -e ".[d]"
37+
python -m uv pip install -r "docs/requirements.txt"
3738
3839
- name: Build documentation
3940
run: sphinx-build -a -b html -W --keep-going docs/ docs/_build

0 commit comments

Comments
 (0)