Skip to content

Commit

Permalink
Use venv for uv to fix 'failed to create directory'
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Sep 16, 2024
1 parent 8fb2add commit dba1a62
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 dba1a62

Please sign in to comment.