diff options
author | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-09-28 11:36:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-28 11:36:29 +0200 |
commit | 6a9fe6fac3876a180820418e83d9e4cb0ac30040 (patch) | |
tree | b8f734ad224da7037cc97a677c01d1a6d448f6e3 /doc/developer | |
parent | Merge pull request #14499 from qlyoung/fix-doc-whitespace-toctree (diff) | |
parent | doc: add .readthedocs.yaml configs (diff) | |
download | frr-6a9fe6fac3876a180820418e83d9e4cb0ac30040.tar.xz frr-6a9fe6fac3876a180820418e83d9e4cb0ac30040.zip |
Merge pull request #14500 from qlyoung/add-rtd-config
doc: add .readthedocs.yaml configs
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 |