Set a language in sphinx doc config

Sphinx has disallowed the practice of setting language = None [0],
which is generating a warning that the docs job interprets as an
error.  Stop this by setting the language to 'en', which is the
Sphinx default.

[0] 3596590317/sphinx/config.py (L183)

Change-Id: Ibd71783419a3eb0620e15796087e46e936964ae2
This commit is contained in:
Brian Rosmaita 2023-11-21 18:31:34 -05:00
parent f56f42dcd8
commit ec06206754

View File

@ -57,7 +57,7 @@ release = version_info.release_string()
#
# 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'
add_function_parentheses = True
add_module_names = False