diff options
Diffstat (limited to '.readthedocs.yml')
-rw-r--r-- | .readthedocs.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 0000000..ba5a3a3 --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,21 @@ +version: 2 +build: + os: ubuntu-lts-latest + tools: + python: "mambaforge-latest" + jobs: + pre_install: + - git update-index --assume-unchanged .rtd-environment.yml docs/conf.py +conda: + environment: .rtd-environment.yml +sphinx: + builder: html + configuration: docs/conf.py + fail_on_warning: false +python: + install: + - method: pip + extra_requirements: + - all + - docs + path: . |