From fe801a87c73a745a6fd271cb8dd745f3c206a3bb Mon Sep 17 00:00:00 2001 From: Simon Cross Date: Wed, 8 Feb 2023 12:44:50 +0100 Subject: [PATCH] Add readthedocs configuration. --- .readthedocs.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000000..cfd48e0e2d --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,24 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +version: 2 + +formats: + - epub + - pdf + +build: + os: ubuntu-22.04 + tools: + python: "3.11" + +python: + install: + - requirements: docs/requirements.txt + - method: pip + path: .[full] + +sphinx: + configuration: docs/conf.py + fail_on_warning: true \ No newline at end of file