From 3dffdf7c6ec081b0d6ae3589f5cd55862611f2a0 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Thu, 7 Mar 2024 14:32:15 +0100 Subject: [PATCH] Add RTD documentation RTD build is failing due to us missing configuration. Fix that. Change-Id: Ia26b09bd8e5c9865161b5975928e15b699b366b0 Signed-off-by: Robert Varga (cherry picked from commit 34f3f2d9da54f39a9ec47f613d9b52961b1173fe) --- .readthedocs.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .readthedocs.yml diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 0000000000..48b1206393 --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,21 @@ +# .readthedocs.yml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +build: + os: ubuntu-22.04 + tools: + python: "3.11" + jobs: + post_checkout: + - git fetch --unshallow || true + +sphinx: + configuration: docs/conf.py + +python: + install: + - requirements: docs/requirements.txt -- 2.36.6