Skip to content

Commit

Permalink
Port to Sphinx 8.0
Browse files Browse the repository at this point in the history
The old `intersphinx_mapping` format has been removed; it must now map
identifiers to (target, inventory) tuples.
  • Loading branch information
cjwatson committed Dec 19, 2024
1 parent 8d6419e commit 1a748e0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,11 @@
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': ('http://docs.python.org/', None),
'django': (
'http://docs.djangoproject.com/en/dev',
'http://docs.djangoproject.com/en/dev/_objects/',
),
}


Expand Down

0 comments on commit 1a748e0

Please sign in to comment.