diff options
-rw-r--r-- | doc/neps/conf.py | 4 | ||||
-rw-r--r-- | doc/neps/nep-0040-legacy-datatype-impl.rst | 2 | ||||
-rw-r--r-- | doc/neps/nep-0042-new-dtypes.rst | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/doc/neps/conf.py b/doc/neps/conf.py index 68805e50f..a0ab286bd 100644 --- a/doc/neps/conf.py +++ b/doc/neps/conf.py @@ -86,6 +86,8 @@ html_theme = 'pydata_sphinx_theme' html_logo = '../source/_static/numpylogo.svg' +html_favicon = '../source/_static/favicon/favicon.ico' + html_theme_options = { "github_url": "https://github.com/numpy/numpy", "twitter_url": "https://twitter.com/numpy_team", @@ -106,8 +108,6 @@ html_copy_source = False html_domain_indices = False html_file_suffix = '.html' -htmlhelp_basename = 'numpy' - if 'sphinx.ext.pngmath' in extensions: pngmath_use_preview = True pngmath_dvipng_args = ['-gamma', '1.5', '-D', '96', '-bg', 'Transparent'] diff --git a/doc/neps/nep-0040-legacy-datatype-impl.rst b/doc/neps/nep-0040-legacy-datatype-impl.rst index a6e74d7a0..a8d20ac41 100644 --- a/doc/neps/nep-0040-legacy-datatype-impl.rst +++ b/doc/neps/nep-0040-legacy-datatype-impl.rst @@ -21,7 +21,7 @@ NEP 40 — Legacy datatype implementation in NumPy - :ref:`NEP 42 <NEP42>` describes the new design's datatype-related APIs. - - NEP 43 describes the new design's API for universal functions. + - :ref:`NEP 43 <NEP43>` describes the new design's API for universal functions. diff --git a/doc/neps/nep-0042-new-dtypes.rst b/doc/neps/nep-0042-new-dtypes.rst index 99c0a4013..3d30d54f4 100644 --- a/doc/neps/nep-0042-new-dtypes.rst +++ b/doc/neps/nep-0042-new-dtypes.rst @@ -17,13 +17,13 @@ NEP 42 — New and extensible DTypes This NEP is third in a series: - - :ref:`NEP40` explains the shortcomings of NumPy's dtype implementation. + - :ref:`NEP 40 <NEP40>` explains the shortcomings of NumPy's dtype implementation. - - :ref:`NEP41` gives an overview of our proposed replacement. + - :ref:`NEP 41 <NEP41>` gives an overview of our proposed replacement. - NEP 42 (this document) describes the new design's datatype-related APIs. - - :ref:`NEP43` describes the new design's API for universal functions. + - :ref:`NEP 43 <NEP43>` describes the new design's API for universal functions. ****************************************************************************** |