From 06e173afb397067424654c0aa61174111e4cc5b2 Mon Sep 17 00:00:00 2001 From: Adam Dobrawy Date: Sat, 7 Mar 2026 12:53:48 +0100 Subject: [PATCH] Fix Sphinx docs build: set language to 'en' instead of None Sphinx 7.x treats `language = None` as an invalid configuration value and errors out when using `-W` (warnings as errors). Setting it to "en" resolves the build failure. Co-Authored-By: Claude Opus 4.6 --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index fbab979..229a8cf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -61,7 +61,7 @@ # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. -language = None +language = "en" # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files.