From ef95985b90a8c1446c6b0d737375954417b30068 Mon Sep 17 00:00:00 2001 From: Romain Dorgueil Date: Thu, 5 Feb 2026 09:15:35 +0100 Subject: [PATCH] fix(docs): install dev dependencies for RTD builds RTD builds were failing due to missing sphinxcontrib-mermaid and furo theme. Install the package with [dev] extra to provide all required Sphinx extensions. --- .readthedocs.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index f72c324..db5a336 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -14,9 +14,10 @@ build: sphinx: configuration: docs/conf.py -# Optionally, but recommended, -# declare the Python requirements required to build your documentation -# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html -# python: -# install: -# - requirements: docs/requirements.txt +# Install the package with documentation dependencies +python: + install: + - method: pip + path: . + extra_requirements: + - dev