1version: 2
2
3build:
4  image: latest
5
6sphinx:
7  builder: html
8  configuration: docs/conf.py
9  fail_on_warning: true
10
11# Install regular dependencies.
12# Then, install special pinning for RTD.
13python:
14  version: 3.8
15  system_packages: false
16  install:
17    - method: pip
18      path: .
19      extra_requirements:
20        - docs
21        - all
22
23# Don't build any extra formats
24formats: []
25