From 6d38ab7f5d1b6d56557c6d5750cde205e4a218d9 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Wed, 17 Dec 2025 22:29:20 +0100 Subject: [PATCH] Add missing RTD configuration file, which is obligatory today --- .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..ea4f37e2 --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,21 @@ +# .readthedocs.yml +# Read the Docs configuration file + +# Details +# - https://docs.readthedocs.com/platform/stable/config-file/v2.html + +# Required +version: 2 + +build: + os: "ubuntu-24.04" + tools: + python: "3.14" + +# Build documentation in the docs/source/ directory with Sphinx +sphinx: + configuration: docs/source/conf.py + +python: + install: + - requirements: docs/requirements-docs.txt