a | b/.readthedocs.yaml | ||
---|---|---|---|
1 | # https://docs.readthedocs.io/en/stable/config-file/v2.html |
||
2 | version: 2 |
||
3 | build: |
||
4 | os: ubuntu-20.04 |
||
5 | tools: |
||
6 | python: "3.9" |
||
7 | sphinx: |
||
8 | configuration: docs/conf.py |
||
9 | # disable this for more lenient docs builds |
||
10 | fail_on_warning: false |
||
11 | python: |
||
12 | install: |
||
13 | - requirements: docs/requirements.txt |
||
14 | - method: pip |
||
15 | path: . |
||
16 | extra_requirements: |
||
17 | - docsbuild |
||
18 | submodules: |
||
19 | include: [docs/tutorials/notebooks] |
||
20 | recursive: true |