From a67a40957a31d658c810e521656095fec7efff28 Mon Sep 17 00:00:00 2001 From: medmunds Date: Sat, 28 May 2022 09:40:20 -0700 Subject: [PATCH] Docs: update 'requests' intersphinx url The python-requests docs ["official" location has changed][0] to requests.readthedocs.io. (And the old domain is no longer live.) [0]: https://github.com/psf/requests/issues/6140#issuecomment-1135071992 --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index caa8dd9..9d1738e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -275,7 +275,7 @@ extlinks = { intersphinx_mapping = { 'python': ('https://docs.python.org/3.10', None), 'django': ('https://docs.djangoproject.com/en/stable/', 'https://docs.djangoproject.com/en/stable/_objects/'), - 'requests': ('https://docs.python-requests.org/en/stable/', None), + 'requests': ('https://requests.readthedocs.io/en/stable/', None), }