diff options
| author | Carlton Gibson <carlton.gibson@noumenal.es> | 2021-11-03 11:42:00 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-11-03 18:45:54 +0100 |
| commit | df452a226e67a8f27e91810b54c369b94f6b6ccf (patch) | |
| tree | a1ba2821c07615034095154d9f68299ed97a1e5a | |
| parent | b3be91dabfd68c5a65e5d5bc7e19db7244ca7a7f (diff) | |
[4.0.x] Fixed #33247 -- Added configuration for Read The Docs.
Co-authored-by: Andrew Neitsch <andrew@neitsch.ca>
Backport of 0da7a2e9dab81b622a2000536c6a96de7f46e237 from main
| -rw-r--r-- | .readthedocs.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 0000000000..d6ca0316b3 --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,18 @@ +# Configuration for the Read The Docs (RTD) builds of the documentation. +# Ref: https://docs.readthedocs.io/en/stable/config-file/v2.html +# Note python.install.requirements is not currently required, as Sphinx is +# preinstalled and spelling checks not performed by RTD. +version: 2 + +build: + os: ubuntu-20.04 + tools: + python: "3.10" + +sphinx: + configuration: docs/conf.py + +formats: + - epub + - pdf + - htmlzip |
