Skip to content

Commit

Permalink
Fix docs CI: use venv for uv to fix 'failed to create directory' (#4460)
Browse files Browse the repository at this point in the history
Use venv for uv to fix 'failed to create directory'
  • Loading branch information
hugovk authored Sep 16, 2024
1 parent 8fb2add commit bbfdba3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ jobs:
- name: Install dependencies
run: |
python -m pip install uv
python -m uv pip install --system -e ".[d]"
python -m uv pip install --system -r "docs/requirements.txt"
python -m uv venv
python -m uv pip install -e ".[d]"
python -m uv pip install -r "docs/requirements.txt"
- name: Build documentation
run: sphinx-build -a -b html -W --keep-going docs/ docs/_build

0 comments on commit bbfdba3

Please sign in to comment.