Skip to content

Commit

Permalink
[sphinx] remove source_suffix specification
Browse files Browse the repository at this point in the history
source_suffix was changed from list to dict in 1.8 but

 source_suffix = {'.rst': 'restructuredtext'}

is default already, so remove it to suppress warnings about that.

Change-Id: I05081784e565286be08d444640bee133a3ff1617
  • Loading branch information
xqt committed Aug 29, 2024
1 parent 478b197 commit 4f7c9d0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,9 @@
templates_path = ['_templates']

# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
# You can specify multiple suffix as a dict:
#
# source_suffix = ['.rst', '.md']
source_suffix = '.rst'
# source_suffix = {'.rst': 'restructuredtext'}

# The encoding of source files.
#
Expand Down

0 comments on commit 4f7c9d0

Please sign in to comment.