From 19341b5a0b95bd61f690f1ad67223064636539a9 Mon Sep 17 00:00:00 2001 From: Ryan Roberts Date: Mon, 8 Jan 2024 08:27:11 +0000 Subject: [PATCH] docs: Update .readthedocs.yaml as required by readthedocs readthedocs is now requiring version 2 of .readthedocs.yaml with some fields made mandatory, in order to guarrantee correct environment dependency management. Without this, readthedocs is failing to build the docs as of 25th September 2023. Link: https://blog.readthedocs.com/migrate-configuration-v2/ Signed-off-by: Ryan Roberts --- .readthedocs.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index db03613..b3f7a18 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -3,6 +3,10 @@ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details. version: 2 +build: + os: ubuntu-22.04 + tools: + python: "3.11" sphinx: configuration: documentation/conf.py formats: -- GitLab