From 5753ea19d7d83413cf64ecce6360a2f29ef920bf Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Wed, 11 Nov 2020 20:58:20 +0000 Subject: [PATCH] Use 'stable' Django version for intersphinx This will ensure documentation references always point at the latest version. --- 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 5e38562d..aaff83ac 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,5 +22,5 @@ exclude_patterns = [] html_theme = "sphinx_rtd_theme" intersphinx_mapping = { - "django": ("https://docs.djangoproject.com/en/2.2/", "https://docs.djangoproject.com/en/2.2/_objects/"), + "django": ("https://docs.djangoproject.com/en/stable/", "https://docs.djangoproject.com/en/stable/_objects/"), }