File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,15 @@ build:
11
11
tools :
12
12
python : " 3.13"
13
13
jobs :
14
- post_create_environment :
15
- - pip install poetry
16
- - poetry config virtualenvs.create false
17
14
post_install :
18
- - poetry install --with docs
15
+ # Install poetry
16
+ # https://python-poetry.org/docs/#installing-manually
17
+ - pip install poetry
18
+ # Install dependencies with 'docs' dependency group
19
+ # https://python-poetry.org/docs/managing-dependencies/#dependency-groups
20
+ # VIRTUAL_ENV needs to be set manually for now.
21
+ # See https://github.com/readthedocs/readthedocs.org/pull/11152/
22
+ - VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install --with docs
19
23
20
24
# Build documentation in the "docs/" directory with Sphinx
21
25
sphinx :
You can’t perform that action at this time.
0 commit comments