summaryrefslogtreecommitdiff
path: root/doc/source
diff options
context:
space:
mode:
authorJarrod Millman <jarrod.millman@gmail.com>2017-12-12 14:02:48 -0800
committerJarrod Millman <jarrod.millman@gmail.com>2017-12-14 15:37:12 -0800
commit976554a3eb4e66ebfeef2e9aace2cf4eb1e83e67 (patch)
tree41bf3a9a49414e097420a78ef0b54c26b03f7570 /doc/source
parentf88d035266d4582c4eb40be9b4c0fe716d5ec24b (diff)
downloadnumpy-976554a3eb4e66ebfeef2e9aace2cf4eb1e83e67.tar.gz
DOC: Prepare to host NEPs on GH pages
Diffstat (limited to 'doc/source')
-rw-r--r--doc/source/_templates/indexcontent.html2
-rw-r--r--doc/source/contents.rst1
-rw-r--r--doc/source/neps/datetime-proposal.rst1
-rw-r--r--doc/source/neps/datetime-proposal3.rst1
-rw-r--r--doc/source/neps/deferred-ufunc-evaluation.rst1
-rw-r--r--doc/source/neps/dropping-python2.7-proposal.rst1
-rw-r--r--doc/source/neps/generalized-ufuncs.rst1
-rw-r--r--doc/source/neps/groupby_additions.rst1
-rw-r--r--doc/source/neps/index.rst38
-rw-r--r--doc/source/neps/math_config_clean.rst1
-rw-r--r--doc/source/neps/missing-data.rst1
-rw-r--r--doc/source/neps/new-iterator-ufunc.rst1
-rw-r--r--doc/source/neps/newbugtracker.rst1
-rw-r--r--doc/source/neps/npy-format.rst1
-rw-r--r--doc/source/neps/structured_array_extensions.rst1
-rw-r--r--doc/source/neps/ufunc-overrides.rst1
-rw-r--r--doc/source/neps/warnfix.rst1
-rw-r--r--doc/source/reference/routines.io.rst2
18 files changed, 2 insertions, 55 deletions
diff --git a/doc/source/_templates/indexcontent.html b/doc/source/_templates/indexcontent.html
index 3fbb616c6..2db4da5e0 100644
--- a/doc/source/_templates/indexcontent.html
+++ b/doc/source/_templates/indexcontent.html
@@ -34,7 +34,7 @@
<td width="50%">
<p class="biglink"><a class="biglink" href="{{ pathto("bugs") }}">Reporting bugs</a></p>
<p class="biglink"><a class="biglink" href="{{ pathto("about") }}">About NumPy</a></p>
- <p class="biglink"><a class="biglink" href="{{ pathto("neps/index") }}">NumPy Enhancement Proposals</a><br/>
+ <p class="biglink"><a class="biglink" href="{{ pathto("http://numpy.github.io/neps") }}">NumPy Enhancement Proposals</a><br/>
</td><td width="50%">
<p class="biglink"><a class="biglink" href="{{ pathto("release") }}">Release Notes</a></p>
<p class="biglink"><a class="biglink" href="{{ pathto("license") }}">License of NumPy</a></p>
diff --git a/doc/source/contents.rst b/doc/source/contents.rst
index 61c0037fc..fad9be76e 100644
--- a/doc/source/contents.rst
+++ b/doc/source/contents.rst
@@ -8,7 +8,6 @@ NumPy manual contents
reference/index
f2py/index
dev/index
- neps/index
release
about
bugs
diff --git a/doc/source/neps/datetime-proposal.rst b/doc/source/neps/datetime-proposal.rst
deleted file mode 100644
index 05f0182b7..000000000
--- a/doc/source/neps/datetime-proposal.rst
+++ /dev/null
@@ -1 +0,0 @@
-.. include:: ../../neps/datetime-proposal.rst
diff --git a/doc/source/neps/datetime-proposal3.rst b/doc/source/neps/datetime-proposal3.rst
deleted file mode 100644
index fa9102a96..000000000
--- a/doc/source/neps/datetime-proposal3.rst
+++ /dev/null
@@ -1 +0,0 @@
-.. include:: ../../neps/datetime-proposal3.rst
diff --git a/doc/source/neps/deferred-ufunc-evaluation.rst b/doc/source/neps/deferred-ufunc-evaluation.rst
deleted file mode 100644
index b4a7a457d..000000000
--- a/doc/source/neps/deferred-ufunc-evaluation.rst
+++ /dev/null
@@ -1 +0,0 @@
-.. include:: ../../neps/deferred-ufunc-evaluation.rst
diff --git a/doc/source/neps/dropping-python2.7-proposal.rst b/doc/source/neps/dropping-python2.7-proposal.rst
deleted file mode 100644
index c67a626be..000000000
--- a/doc/source/neps/dropping-python2.7-proposal.rst
+++ /dev/null
@@ -1 +0,0 @@
-.. include:: ../../neps/dropping-python2.7-proposal.rst
diff --git a/doc/source/neps/generalized-ufuncs.rst b/doc/source/neps/generalized-ufuncs.rst
deleted file mode 100644
index 8b28f0224..000000000
--- a/doc/source/neps/generalized-ufuncs.rst
+++ /dev/null
@@ -1 +0,0 @@
-.. include:: ../../neps/generalized-ufuncs.rst
diff --git a/doc/source/neps/groupby_additions.rst b/doc/source/neps/groupby_additions.rst
deleted file mode 100644
index 61abc951e..000000000
--- a/doc/source/neps/groupby_additions.rst
+++ /dev/null
@@ -1 +0,0 @@
-.. include:: ../../neps/groupby_additions.rst
diff --git a/doc/source/neps/index.rst b/doc/source/neps/index.rst
deleted file mode 100644
index d85f33606..000000000
--- a/doc/source/neps/index.rst
+++ /dev/null
@@ -1,38 +0,0 @@
-===========================
-NumPy Enhancement Proposals
-===========================
-
-NumPy Enhancement Proposals (NEPs) describe proposed changes to NumPy.
-NEPs are modeled on Python Enhancement Proposals (PEPs), and are typically
-written up when large changes to NumPy are proposed.
-
-This page provides an overview of all NEPs, making only a distinction between
-the ones that have been implemented and those that have not been implemented.
-
-Implemented NEPs
-----------------
-
-.. toctree::
- :maxdepth: 1
-
- ufunc-overrides
- generalized-ufuncs
- new-iterator-ufunc
- npy-format
-
-Other NEPs
-----------
-
-.. toctree::
- :maxdepth: 1
-
- missing-data
- math_config_clean
- groupby_additions
- warnfix
- newbugtracker
- deferred-ufunc-evaluation
- structured_array_extensions
- datetime-proposal
- datetime-proposal3
- dropping-python2.7-proposal
diff --git a/doc/source/neps/math_config_clean.rst b/doc/source/neps/math_config_clean.rst
deleted file mode 100644
index 25b340e51..000000000
--- a/doc/source/neps/math_config_clean.rst
+++ /dev/null
@@ -1 +0,0 @@
-.. include:: ../../neps/math_config_clean.rst
diff --git a/doc/source/neps/missing-data.rst b/doc/source/neps/missing-data.rst
deleted file mode 100644
index f9899f1b0..000000000
--- a/doc/source/neps/missing-data.rst
+++ /dev/null
@@ -1 +0,0 @@
-.. include:: ../../neps/missing-data.rst
diff --git a/doc/source/neps/new-iterator-ufunc.rst b/doc/source/neps/new-iterator-ufunc.rst
deleted file mode 100644
index 7e06aa8ae..000000000
--- a/doc/source/neps/new-iterator-ufunc.rst
+++ /dev/null
@@ -1 +0,0 @@
-.. include:: ../../neps/new-iterator-ufunc.rst
diff --git a/doc/source/neps/newbugtracker.rst b/doc/source/neps/newbugtracker.rst
deleted file mode 100644
index 70ea21f8c..000000000
--- a/doc/source/neps/newbugtracker.rst
+++ /dev/null
@@ -1 +0,0 @@
-.. include:: ../../neps/newbugtracker.rst
diff --git a/doc/source/neps/npy-format.rst b/doc/source/neps/npy-format.rst
deleted file mode 100644
index bd1f2bb5c..000000000
--- a/doc/source/neps/npy-format.rst
+++ /dev/null
@@ -1 +0,0 @@
-.. include:: ../../neps/npy-format.rst
diff --git a/doc/source/neps/structured_array_extensions.rst b/doc/source/neps/structured_array_extensions.rst
deleted file mode 100644
index 341e6c955..000000000
--- a/doc/source/neps/structured_array_extensions.rst
+++ /dev/null
@@ -1 +0,0 @@
-.. include:: ../../neps/structured_array_extensions.rst
diff --git a/doc/source/neps/ufunc-overrides.rst b/doc/source/neps/ufunc-overrides.rst
deleted file mode 100644
index 2e293ec44..000000000
--- a/doc/source/neps/ufunc-overrides.rst
+++ /dev/null
@@ -1 +0,0 @@
-.. include:: ../../neps/ufunc-overrides.rst
diff --git a/doc/source/neps/warnfix.rst b/doc/source/neps/warnfix.rst
deleted file mode 100644
index 1b9b1b87b..000000000
--- a/doc/source/neps/warnfix.rst
+++ /dev/null
@@ -1 +0,0 @@
-.. include:: ../../neps/warnfix.rst
diff --git a/doc/source/reference/routines.io.rst b/doc/source/reference/routines.io.rst
index 5df590f17..573498792 100644
--- a/doc/source/reference/routines.io.rst
+++ b/doc/source/reference/routines.io.rst
@@ -14,7 +14,7 @@ NumPy binary files (NPY, NPZ)
savez_compressed
The format of these binary file types is documented in
-http://docs.scipy.org/doc/numpy/neps/npy-format.html
+http://numpy.github.io/neps/npy-format.html
Text files
----------