summaryrefslogtreecommitdiffstats
path: root/doc/developer
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@qlyoung.net>2023-09-28 02:14:46 +0200
committerQuentin Young <qlyoung@qlyoung.net>2023-09-28 02:16:16 +0200
commitf71f07802372fbf8d7f6f4ea394418ea45763181 (patch)
treeda199afa3c701ab728576fa0328663f335891e22 /doc/developer
parentMerge pull request #14222 from opensourcerouting/doc/debian12 (diff)
downloadfrr-f71f07802372fbf8d7f6f4ea394418ea45763181.tar.xz
frr-f71f07802372fbf8d7f6f4ea394418ea45763181.zip
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 <qlyoung@qlyoung.net>
Diffstat (limited to 'doc/developer')
-rw-r--r--doc/developer/.readthedocs.yaml16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/developer/.readthedocs.yaml b/doc/developer/.readthedocs.yaml
new file mode 100644
index 000000000..9acbedb9c
--- /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