From ddfed699ff67ed619f1cd88ee50de3d0dd845dbb Mon Sep 17 00:00:00 2001 From: Doug Latornell Date: Tue, 14 Jan 2025 15:33:19 -0800 Subject: [PATCH] Add explicit Sphinx configuration for readthedocs Updated `.readthedocs.yaml` to define Sphinx builder settings, including the builder type, configuration file path, and `fail_on_warning` option. This is necessary due to readthedocs deprecating projects without explicit builder configuration that comes into effect on 20-Jan-2025. --- .readthedocs.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 916eb229..70128b79 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -8,5 +8,10 @@ build: conda: environment: environment-rtd.yaml +sphinx: + builder: html + configuration: docs/conf.py + fail_on_warning: false + # Only build HTML and JSON formats formats: []