Skip to content

Commit

Permalink
chore(rtd): Installing virtualenv and deps with uv to speed up builds (
Browse files Browse the repository at this point in the history
…#95)

Cuts build time in half.
  • Loading branch information
effigies authored Nov 8, 2024
1 parent dd8a5b3 commit a04a593
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,18 @@ build:
os: ubuntu-lts-latest
tools:
python: latest

python:
install:
- requirements: docs/requirements.txt

sphinx:
configuration: docs/conf.py
jobs:
pre_create_environment:
- asdf plugin add uv
- asdf install uv latest
- asdf global uv latest
# Turn `python -m virtualenv` into `python -c pass`
- truncate --size 0 $( dirname $( uv python find ) )/../lib/python3*/site-packages/virtualenv/__main__.py
post_create_environment:
- uv venv $READTHEDOCS_VIRTUALENV_PATH
# Turn `python -m pip` into `python -c pass`
- truncate --size 0 $( ls -d $READTHEDOCS_VIRTUALENV_PATH/lib/python3* )/site-packages/pip.py
# Use a cache dir in the same mount to halve the install time
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH uv pip install --cache-dir $READTHEDOCS_VIRTUALENV_PATH/../../uv_cache --upgrade sphinx
post_install:
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH uv pip install --cache-dir $READTHEDOCS_VIRTUALENV_PATH/../../uv_cache -r docs/requirements.txt

0 comments on commit a04a593

Please sign in to comment.