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/datalad#6715). This change sets the language
specification to English (en)
  • Loading branch information
adswa committed May 30, 2022
1 parent 5e6ed38 commit 85eed62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -101,7 +101,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 85eed62

Please sign in to comment.