Skip to content

Commit

Permalink
DOC: Set language in Sphinx config to en
Browse files Browse the repository at this point in the history
Starting with Sphinx version 5.0, the configuration for the doc's
language should not be None anymore and causes docbuild failures
otherwise (see datalad#6715). This change sets the language specification
to English (en).

Fixes datalad#6715
  • Loading branch information
adswa committed May 30, 2022
1 parent c21a31c commit d38fec7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -120,7 +120,7 @@ def setup(sphinx):
#
# 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'

# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
Expand Down

0 comments on commit d38fec7

Please sign in to comment.