diff options
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/conf.py | 3 | ||||
-rw-r--r-- | doc/source/dev/howto-docs.rst | 4 | ||||
-rw-r--r-- | doc/source/dev/index.rst | 5 |
3 files changed, 6 insertions, 6 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), } diff --git a/doc/source/dev/howto-docs.rst b/doc/source/dev/howto-docs.rst index 281f87cfb..e8bafd254 100644 --- a/doc/source/dev/howto-docs.rst +++ b/doc/source/dev/howto-docs.rst @@ -35,8 +35,8 @@ Current vision for the documentation: NEP 44 -------------------------------------------- Recently, the NumPy community approved a *NumPy Enhancement Proposal (NEP)* -about documentation, `NEP 44 - Restructuring the NumPy Documentation -<https://www.numpy.org/neps/nep-0044-restructuring-numpy-docs>`__. +about documentation, +:ref:`NEP 44 - Restructuring the NumPy Documentation <NEP44>`. **Where is the documentation?** diff --git a/doc/source/dev/index.rst b/doc/source/dev/index.rst index fd735f453..aeb277a87 100644 --- a/doc/source/dev/index.rst +++ b/doc/source/dev/index.rst @@ -140,8 +140,7 @@ Here's the short summary, complete TOC links are below: If your change introduces a deprecation, make sure to discuss this first on GitHub or the mailing list first. If agreement on the deprecation is - reached, follow `NEP 23 deprecation policy <http://www.numpy.org/neps/ - nep-0023-backwards-compatibility.html>`_ to add the deprecation. + reached, follow :ref:`NEP 23 deprecation policy <NEP23>` to add the deprecation. 6. Cross referencing issues @@ -189,7 +188,7 @@ Stylistic Guidelines import numpy as np -* For C code, see the :ref:`numpy-c-style-guide<style_guide>` +* For C code, see :ref:`NEP 45 <NEP45>`. Test coverage |