From f71f07802372fbf8d7f6f4ea394418ea45763181 Mon Sep 17 00:00:00 2001 From: Quentin Young Date: Wed, 27 Sep 2023 20:14:46 -0400 Subject: [PATCH] doc: add .readthedocs.yaml configs As of Sep 25 2023, RTD projects require config files to build. This patch is necessary for docs to continue to build. Signed-off-by: Quentin Young --- doc/developer/.readthedocs.yaml | 16 ++++++++++++++++ doc/user/.readthedocs.yaml | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 doc/developer/.readthedocs.yaml create mode 100644 doc/user/.readthedocs.yaml diff --git a/doc/developer/.readthedocs.yaml b/doc/developer/.readthedocs.yaml new file mode 100644 index 0000000000..9acbedb9cd --- /dev/null +++ b/doc/developer/.readthedocs.yaml @@ -0,0 +1,16 @@ +# Required +version: 2 + +# Set the version of Python and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.11" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: doc/developer/conf.py + +python: + install: + - requirements: doc/requirements.txt diff --git a/doc/user/.readthedocs.yaml b/doc/user/.readthedocs.yaml new file mode 100644 index 0000000000..ed44aef552 --- /dev/null +++ b/doc/user/.readthedocs.yaml @@ -0,0 +1,16 @@ +# Required +version: 2 + +# Set the version of Python and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.11" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: doc/user/conf.py + +python: + install: + - requirements: doc/requirements.txt