From 31f9ced9c68a888406b9d4175e62ac2901d4c5dd Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Sun, 25 Jul 2021 12:33:57 +0800 Subject: [PATCH] .readthedocs: add .readthedocs.yml to address the missing document of https://docs.ceph.com/projects/teuthology/en/latest/commands/list.html, they assume teuthology cli tools in $PATH when building sphinx document. Signed-off-by: Kefu Chai --- .readthedocs.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .readthedocs.yml diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 000000000..66f140c89 --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,19 @@ +--- +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +version: 2 +formats: [] +build: + image: latest +python: + version: 3.7 + install: + - method: pip + path: . + extra_requirements: + - orchestra + - requirements: docs/requirements.txt +sphinx: + builder: html + configuration: docs/conf.py -- 2.47.3