From e0474200ac71d8a61f8d338bb64a53d9427583f0 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Thu, 7 Jul 2016 16:52:21 +0100 Subject: [PATCH] Fix intersphinx doc URLs for https --- doc/conf.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index ca701c7d6..f98186ba0 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -243,11 +243,11 @@ man_pages = [ # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = { - 'http://docs.python.org/': None, - 'http://documen.tician.de/islpy': None, - 'http://documen.tician.de/pyopencl': None, - 'http://documen.tician.de/cgen': None, - 'http://docs.scipy.org/doc/numpy/': None, + 'https://docs.python.org/3': None, + 'https://documen.tician.de/islpy': None, + 'https://documen.tician.de/pyopencl': None, + 'https://documen.tician.de/cgen': None, + 'https://docs.scipy.org/doc/numpy/': None, } autoclass_content = "class" -- GitLab