From b358714a9ad4e190427ee7e722889fe667b8b37e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20W=C3=A4lchli?= Date: Sun, 5 Apr 2020 17:11:58 +0200 Subject: [PATCH] Adding Intersphinx documentation links (#1369) * added intersphinx links for base packages * remove comment --- docs/source/conf.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 19b8e7dc08..66b09c6b63 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -251,8 +251,12 @@ epub_exclude_files = ['search.html'] # -- Options for intersphinx extension --------------------------------------- -# Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {'https://docs.python.org/': None} +intersphinx_mapping = { + 'python': ('https://docs.python.org/3', None), + 'torch': ('https://pytorch.org/docs/stable/', None), + 'numpy': ('https://docs.scipy.org/doc/numpy/', None), + 'PIL': ('https://pillow.readthedocs.io/en/stable/', None), +} # -- Options for todo extension ----------------------------------------------