File tree 2 files changed +2
-5
lines changed
synthtool/gcp/templates/python_library 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ extensions = [
38
38
"sphinx.ext.napoleon",
39
39
"sphinx.ext.todo",
40
40
"sphinx.ext.viewcode",
41
+ "recommonmark",
41
42
]
42
43
43
44
# autodoc/autosummary flags
@@ -49,10 +50,6 @@ autosummary_generate = True
49
50
# Add any paths that contain templates here, relative to this directory.
50
51
templates_path = ["_templates"]
51
52
52
- # Allow markdown includes (so releases.md can include CHANGLEOG.md)
53
- # http://www.sphinx-doc.org/en/master/markdown.html
54
- source_parsers = {".md": "recommonmark.parser.CommonMarkParser"}
55
-
56
53
# The suffix(es) of source filenames.
57
54
# You can specify multiple suffix as a list of string:
58
55
# source_suffix = ['.rst', '.md']
Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ def docs(session):
166
166
"""Build the docs for this library."""
167
167
168
168
session.install('-e', '.')
169
- session.install('sphinx< 3 .0.0 ' , ' alabaster ' , ' recommonmark ' )
169
+ session.install('sphinx', 'alabaster', 'recommonmark')
170
170
171
171
shutil.rmtree(os.path.join('docs', '_build'), ignore_errors=True)
172
172
session.run(
You can’t perform that action at this time.
0 commit comments