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 b4fbf43 commit bd063ccCopy full SHA for bd063cc
.readthedocs.yaml
@@ -3,11 +3,23 @@ version: 2
3
sphinx:
4
configuration: docs/conf.py
5
6
+
7
+build:
8
+ os: ubuntu-22.04
9
+ tools:
10
+ python: "3.9"
11
+ jobs:
12
+ post_create_environment:
13
+ # Install poetry
14
+ - pip install poetry
15
+ # Tell poetry to not use a virtual environment
16
+ - poetry config virtualenvs.create false
17
+ post_install:
18
+ # Install dependencies
19
+ - poetry install --with docs --with tests
20
21
python:
- version: 3.7
22
+ version: 3.9
23
install:
24
- method: pip
25
path: .
- extra_requirements:
- - docs
- - tests
0 commit comments