diff options
author | Stephan Hoyer <shoyer@google.com> | 2018-10-14 14:42:58 -0700 |
---|---|---|
committer | Stephan Hoyer <shoyer@google.com> | 2018-10-14 18:54:24 -0700 |
commit | 869e68db40d50bb9f24b90e5ecaa23d6ae9df8ef (patch) | |
tree | 8fce81d97ae2dac4392158bd0832870082b690d4 | |
parent | b9f7fd6dd36acd97776dbbb6dacc99140833cb8b (diff) | |
download | numpy-869e68db40d50bb9f24b90e5ecaa23d6ae9df8ef.tar.gz |
MAINT: fix build for NEP 16
-rw-r--r-- | doc/neps/index.rst.tmpl | 10 | ||||
-rw-r--r-- | doc/neps/nep-0016-abstract-array.rst | 9 |
2 files changed, 15 insertions, 4 deletions
diff --git a/doc/neps/index.rst.tmpl b/doc/neps/index.rst.tmpl index e7b8fedba..bf4df3dfb 100644 --- a/doc/neps/index.rst.tmpl +++ b/doc/neps/index.rst.tmpl @@ -81,3 +81,13 @@ Rejected NEPs {% for nep, tags in neps.items() if tags['Status'] == 'Rejected' %} {{ tags['Title'] }} <{{ tags['Filename'] }}> {% endfor %} + +Withdrawn NEPs +-------------- + +.. toctree:: + :maxdepth: 1 + +{% for nep, tags in neps.items() if tags['Status'] == 'Withdrawn' %} + {{ tags['Title'] }} <{{ tags['Filename'] }}> +{% endfor %} diff --git a/doc/neps/nep-0016-abstract-array.rst b/doc/neps/nep-0016-abstract-array.rst index d3c2860a7..0dc201541 100644 --- a/doc/neps/nep-0016-abstract-array.rst +++ b/doc/neps/nep-0016-abstract-array.rst @@ -1,11 +1,12 @@ -==================================================== -An abstract base class for identifying "duck arrays" -==================================================== +============================================================= +NEP 16 — An abstract base class for identifying "duck arrays" +============================================================= :Author: Nathaniel J. Smith <njs@pobox.com> :Status: Withdrawn :Type: Standards Track :Created: 2018-03-06 +:Resolution: https://github.com/numpy/numpy/pull/12174 .. note:: @@ -318,7 +319,7 @@ Links to discussion Appendix: Benchmark script -------------------------- -.. literal-include:: nep-0016-benchmark.py +.. literalinclude:: nep-0016-benchmark.py Copyright |