1# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
2# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
3#
4# ReadTheDocs configuration.
5# See https://docs.readthedocs.io/en/stable/config-file/v2.html
6
7version: 2
8
9sphinx:
10  builder: html
11  configuration: doc/conf.py
12
13# No other formats than HTML
14formats: []
15
16python:
17  version: 3.7
18  install:
19    - requirements: doc/requirements.pip
20    - method: pip
21      path: .
22  system_packages: false
23