Skip to content

Commit d7d7a0c

Browse files
committed
Fix deprecated use of source_suffix in Sphinx conf.py file
1 parent 3f7e743 commit d7d7a0c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/basemap/doc/source/conf.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,11 @@
7373
# You can specify multiple suffix as a list of string:
7474
#
7575
# source_suffix = [".rst", ".md"]
76-
source_suffix = ".rst"
76+
source_suffix = {
77+
".rst": "restructuredtext",
78+
".txt": "restructuredtext",
79+
".md": "markdown",
80+
}
7781

7882
# The master toctree document.
7983
master_doc = "index"

0 commit comments

Comments
 (0)