We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86ec9c2 commit 2dad903Copy full SHA for 2dad903
1 file changed
.readthedocs.yaml
@@ -11,11 +11,15 @@ build:
11
tools:
12
python: "3.13"
13
jobs:
14
- post_create_environment:
15
- - pip install poetry
16
- - poetry config virtualenvs.create false
17
post_install:
18
- - poetry install --with docs
+ # Install poetry
+ # https://python-poetry.org/docs/#installing-manually
+ - pip install poetry
+ # 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
23
24
# Build documentation in the "docs/" directory with Sphinx
25
sphinx:
0 commit comments