diff options
author | Quentin Young <qlyoung@qlyoung.net> | 2023-09-28 02:14:46 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@qlyoung.net> | 2023-09-28 02:16:16 +0200 |
commit | f71f07802372fbf8d7f6f4ea394418ea45763181 (patch) | |
tree | da199afa3c701ab728576fa0328663f335891e22 /doc/developer | |
parent | Merge pull request #14222 from opensourcerouting/doc/debian12 (diff) | |
download | frr-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.yaml | 16 |
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 |