From deddd2fd2d99afe45a36d58cb2b16862aebe2b96 Mon Sep 17 00:00:00 2001 From: johnthagen Date: Thu, 21 Jan 2021 11:35:00 -0500 Subject: [PATCH] Update external documentation links to point to latest Django and Python releases --- docs/conf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index ef3a7ab..a91a711 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -87,10 +87,10 @@ htmlhelp_basename = "{project}doc".format(project=project_slug) # -- Options for sphinx.ext.intersphinx --------------------------------------- intersphinx_mapping = { - "python": ("https://docs.python.org/2.7", None), + "python": ("https://docs.python.org/3", None), "django": ( - "https://docs.djangoproject.com/en/1.8/", - "https://docs.djangoproject.com/en/1.8/_objects/", + "https://docs.djangoproject.com/en/3.1/", + "https://docs.djangoproject.com/en/3.1/_objects/", ), "requests": ("https://requests.readthedocs.io/en/master/", None), }