File size: 485 Bytes
476455e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # ReadTheDocs environment customization to allow us to use conda to install
# libraries which have C dependencies for the doc build. See:
# https://docs.readthedocs.io/en/latest/config-file/v2.html
version: 2
build:
os: ubuntu-20.04
tools:
python: "3.9"
python:
install:
- method: pip
path: .
- requirements: doc/requirements.txt
sphinx:
configuration: doc/conf.py
fail_on_warning: true # http://www.sphinx-doc.org/en/master/man/sphinx-build.html#id6
|