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 18, 2024
1 parent 8d6419e commit 8efaefe
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 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':
'python': ('http://docs.python.org/3', None),
'django': (
'http://docs.djangoproject.com/en/1.9',
'http://docs.djangoproject.com/en/1.9/_objects/',
),
}


Expand Down

0 comments on commit 8efaefe

Please sign in to comment.