summaryrefslogtreecommitdiff
path: root/doc/source/conf.py
diff options
context:
space:
mode:
authorBen Nathanson <github@bigriver.xyz>2020-06-04 17:43:38 -0400
committerBen Nathanson <github@bigriver.xyz>2020-06-04 17:43:38 -0400
commit7764b5f2bcb6f4188b3e524209672e152226604c (patch)
tree94c9ddc162d33a21db0424cbd55061afdfdc079f /doc/source/conf.py
parent03ebc55f4319852a8f1501c6be82267728301c6e (diff)
downloadnumpy-7764b5f2bcb6f4188b3e524209672e152226604c.tar.gz
DOC: Use intersphinx for NEP references
Per #16500 discussion, adds link updates to PR. Replaces NEP URLs with intersphinx links in these files: * doc/HOWTO_RELEASE.rst.txt * doc/source/dev/howto-docs.rst * numpy/doc/dispatch.py * numpy/lib/format.py and incorporates @rossbar's #16502 change of `config.py`.
Diffstat (limited to 'doc/source/conf.py')
-rw-r--r--doc/source/conf.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index d6a0f8bf3..65dcae245 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -240,11 +240,12 @@ texinfo_documents = [
# Intersphinx configuration
# -----------------------------------------------------------------------------
intersphinx_mapping = {
+ 'neps': ('https://numpy.org/neps', None),
'python': ('https://docs.python.org/dev', None),
'scipy': ('https://docs.scipy.org/doc/scipy/reference', None),
'matplotlib': ('https://matplotlib.org', None),
'imageio': ('https://imageio.readthedocs.io/en/stable', None),
- 'skimage': ('https://scikit-image.org/docs/stable', None)
+ 'skimage': ('https://scikit-image.org/docs/stable', None),
}