From 5cb40531d0905e18e8bf038fef1a6986b049ee14 Mon Sep 17 00:00:00 2001 From: Matthias Bussonnier Date: Mon, 12 Jun 2017 12:04:41 -0700 Subject: [PATCH] Inter-sphinx with Python 3, not 2. Python 2 is the default, you need to be explicit for Python 3. --- docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 6c5ab903..f1071d9d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -164,7 +164,7 @@ epub_exclude_files = ['search.html'] # -- Intersphinx ---------------------------------------------------------- -intersphinx_mapping = {'https://docs.python.org/': None} +intersphinx_mapping = {'https://docs.python.org/3/': None} # -- Read The Docs --------------------------------------------------------