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 61d483f commit 374b0e4Copy full SHA for 374b0e4
.readthedocs.yaml
@@ -9,10 +9,16 @@ sphinx:
9
# Optionally build your docs in additional formats such as PDF and ePub
10
formats: all
11
12
-python:
13
- version: 3.8
14
- install:
15
- - method: pip
16
- path: .
17
- extra_requirements:
18
- - docs
+build:
+ os: ubuntu-20.04
+ tools:
+ python: "3.9"
+ jobs:
+ post_create_environment:
+ # Install poetry
19
+ - pip install poetry
20
+ # Tell poetry to not use a virtual environment
21
+ - poetry config virtualenvs.create false
22
+ post_install:
23
+ # Install dependencies
24
+ - poetry install --with docs
0 commit comments