We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 779467e commit 5715e54Copy full SHA for 5715e54
.readthedocs.yaml
@@ -1,18 +1,18 @@
1
version: 2
2
3
build:
4
- os: ubuntu-22.04
5
-
+ os: "ubuntu-22.04"
6
tools:
7
python: "3.11"
8
9
jobs:
10
post_create_environment:
11
- - pip install poetry
12
- - poetry config virtualenvs.create false
13
+ # Install poetry
+ # https://python-poetry.org/docs/#installing-manually
+ - python -m pip install poetry
14
post_install:
15
- - poetry install --with docs
+ # Install dependencies with 'docs' dependency group
+ # https://python-poetry.org/docs/managing-dependencies/#dependency-groups
+ - VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install --with docs
16
17
sphinx:
18
configuration: docs/conf.py
0 commit comments