From 5cc6633b3ee0f7a85a706fe84d35d5341da6dff9 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Thu, 7 Mar 2024 15:48:10 +0100 Subject: [PATCH] Add RTD configuration RTD builds are failing due to missing configuration. Fix that. Change-Id: I8b7da2e1872905a496681c082f8e3b4d7395d96e Signed-off-by: Robert Varga --- .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 00000000..48b12063 --- /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