From 036aa1641b8672be422ee9e136a83150ab301b3c Mon Sep 17 00:00:00 2001 From: Adrian Vladu Date: Mon, 4 Mar 2024 14:25:14 +0200 Subject: [PATCH] readthedocs: add configuration file readthedocs needs a configuration file with the name .readthedocs.yaml. See: https://docs.readthedocs.io/en/stable/config-file/ Change-Id: I594cdb2650322222661b2069128fb4190052f37d Signed-off-by: Adrian Vladu --- .readthedocs.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 00000000..6eba3acd --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,17 @@ +version: 2 + +build: + os: "ubuntu-22.04" + tools: + python: "3.11" + +formats: all + +sphinx: + configuration: doc/source/conf.py + +python: + install: + - path: . + - requirements: doc/requirements.txt +