From: Quentin Young Date: Thu, 28 Sep 2023 00:14:46 +0000 (-0400) Subject: doc: add .readthedocs.yaml configs X-Git-Tag: base_9.1~28^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=f71f07802372fbf8d7f6f4ea394418ea45763181;p=matthieu%2Ffrr.git 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 --- 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