From 21d800b1bfec1b3ca2fbd4cce8b8ade507c6382a Mon Sep 17 00:00:00 2001 From: Cody Logan Date: Wed, 8 Jan 2020 10:16:58 -0800 Subject: Link Python stdlib docs --- docs/conf.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/conf.py b/docs/conf.py index 7d685d9..f8370f3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ copyright = '2020, Cody Logan' author = 'Cody Logan' # The full version, including alpha/beta/rc tags -release = '0.2.0.dev1' +release = '0.2.0' # -- General configuration --------------------------------------------------- @@ -31,7 +31,8 @@ release = '0.2.0.dev1' # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ - 'sphinxcontrib.napoleon' + 'sphinx.ext.napoleon', + 'sphinx.ext.intersphinx', ] # Add any paths that contain templates here, relative to this directory. @@ -42,6 +43,10 @@ templates_path = ['_templates'] # This pattern also affects html_static_path and html_extra_path. exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] +intersphinx_mapping = { + 'python': ('https://docs.python.org/3', None), +} + # -- Options for HTML output ------------------------------------------------- -- cgit v1.2.3