We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28cb67d commit 0b56646Copy full SHA for 0b56646
.readthedocs.yaml
@@ -17,4 +17,15 @@ mkdocs:
17
build:
18
os: ubuntu-22.04
19
tools:
20
- python: "3.6"
+ python: "3.11"
21
+ jobs:
22
+ post_create_environment:
23
+ # Install poetry
24
+ # https://python-poetry.org/docs/#installing-manually
25
+ - pip install poetry
26
+ # Tell poetry to not use a virtual environment
27
+ - poetry config virtualenvs.create false
28
+ post_install:
29
+ # Install dependencies with 'docs' dependency group
30
+ # https://python-poetry.org/docs/managing-dependencies/#dependency-groups
31
+ - poetry install --with docs
0 commit comments