summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Hoyer <shoyer@google.com>2019-09-26 19:55:54 -0700
committerStephan Hoyer <shoyer@google.com>2019-09-26 19:57:48 -0700
commite19d4ce0ba2689a4450478201212985f35a88b0f (patch)
treeb91bf5932ddfb990d0d081bce6568f56e445f60e
parent3dfe3a45757d881df7c3a9fc9b9049dab8245567 (diff)
downloadnumpy-e19d4ce0ba2689a4450478201212985f35a88b0f.tar.gz
DOC: Only list "Active" NEPs under "Meta-NEPs"
In particular, NEP 23 (which is only a draft) is currently listed under both "Meta-NEPs" *and* "Open NEPs". It should only be in the later.
-rw-r--r--doc/neps/index.rst.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/neps/index.rst.tmpl b/doc/neps/index.rst.tmpl
index 0ad8e0f80..4c5b7766f 100644
--- a/doc/neps/index.rst.tmpl
+++ b/doc/neps/index.rst.tmpl
@@ -23,7 +23,7 @@ Meta-NEPs (NEPs about NEPs or Processes)
.. toctree::
:maxdepth: 1
-{% for nep, tags in neps.items() if tags['Type'] == 'Process' %}
+{% for nep, tags in neps.items() if tags['Status'] == 'Active' %}
{{ tags['Title'] }} <{{ tags['Filename'] }}>
{% endfor %}