From 400ea0174a713598045f373bd48b3fd3e97005d5 Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 20 Apr 2020 12:48:05 +0530 Subject: [PATCH 1/3] docs(bigtable): add parser in extensions of conf.py file --- docs/conf.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index ce720db11..9fc2df3db 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -38,6 +38,7 @@ "sphinx.ext.napoleon", "sphinx.ext.todo", "sphinx.ext.viewcode", + "recommonmark" ] # autodoc/autosummary flags @@ -49,10 +50,6 @@ # Add any paths that contain templates here, relative to this directory. templates_path = ["_templates"] -# Allow markdown includes (so releases.md can include CHANGLEOG.md) -# http://www.sphinx-doc.org/en/master/markdown.html -source_parsers = {".md": "recommonmark.parser.CommonMarkParser"} - # The suffix(es) of source filenames. # You can specify multiple suffix as a list of string: # source_suffix = ['.rst', '.md'] From 696bc244b0733d0dc74bc09a532fdc665c584cce Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 20 Apr 2020 16:10:50 +0530 Subject: [PATCH 2/3] docs(bigtable): lint fixes --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 9fc2df3db..924901385 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -38,7 +38,7 @@ "sphinx.ext.napoleon", "sphinx.ext.todo", "sphinx.ext.viewcode", - "recommonmark" + "recommonmark", ] # autodoc/autosummary flags From 21be6a3e35e13fdfe89f29bfb06d61ec3e9f699a Mon Sep 17 00:00:00 2001 From: HemangChothani Date: Thu, 14 May 2020 19:40:00 +0530 Subject: [PATCH 3/3] fix(bigtable): remove sphinx version restriction --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 1065894e6..3bca8a099 100644 --- a/noxfile.py +++ b/noxfile.py @@ -141,7 +141,7 @@ def docs(session): """Build the docs for this library.""" session.install("-e", ".") - session.install("sphinx<3.0.0", "alabaster", "recommonmark") + session.install("sphinx", "alabaster", "recommonmark") shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True) session.run(