diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/conf.py | 9 |
1 files changed, 7 insertions, 2 deletions
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 ------------------------------------------------- |
