Port to Sphinx 8.0

The old `intersphinx_mapping` format has been removed; it must now map
identifiers to (target, inventory) tuples.
This commit is contained in:
Colin Watson 2024-12-18 13:12:20 +00:00
parent 8d6419eec8
commit bd233206a2

View file

@ -28,9 +28,11 @@ add_function_parentheses = True
pygments_style = 'sphinx'
intersphinx_mapping = {
'http://docs.python.org/2.7': None,
'http://docs.djangoproject.com/en/1.9':
'http://docs.djangoproject.com/en/1.9/_objects/',
'python': ('https://docs.python.org/3', None),
'django': (
'https://docs.djangoproject.com/en/dev',
'https://docs.djangoproject.com/en/dev/_objects/',
),
}