We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
VIRTUAL_ENV
1 parent b257ec8 commit ca90e57Copy full SHA for ca90e57
.readthedocs.yaml
@@ -6,13 +6,14 @@ build:
6
python: "3.10"
7
jobs:
8
post_create_environment:
9
- # Install pipx
10
- - pip install pipx
11
# Install poetry
12
- # https://python-poetry.org/docs/#installing-with-pipx
13
- - pipx install poetry
14
- # Install project's dependencies
15
- - pipx run poetry install
+ # https://python-poetry.org/docs/#installing-manually
+ - pip install poetry
+ post_install:
+ # Install dependencies with 'docs' dependency group
+ # https://python-poetry.org/docs/managing-dependencies/#dependency-groups
+ # VIRTUAL_ENV needs to be set manually for now, see #11150
16
+ - VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install
17
18
sphinx:
19
configuration: docs/conf.py
0 commit comments