summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Hoyer <shoyer@google.com>2018-10-14 14:42:58 -0700
committerStephan Hoyer <shoyer@google.com>2018-10-14 18:54:24 -0700
commit869e68db40d50bb9f24b90e5ecaa23d6ae9df8ef (patch)
tree8fce81d97ae2dac4392158bd0832870082b690d4
parentb9f7fd6dd36acd97776dbbb6dacc99140833cb8b (diff)
downloadnumpy-869e68db40d50bb9f24b90e5ecaa23d6ae9df8ef.tar.gz
MAINT: fix build for NEP 16
-rw-r--r--doc/neps/index.rst.tmpl10
-rw-r--r--doc/neps/nep-0016-abstract-array.rst9
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