diff options
author | Pierre de Buyl <pdebuyl@pdebuyl.be> | 2016-09-07 09:55:40 +0200 |
---|---|---|
committer | Pierre de Buyl <pdebuyl@pdebuyl.be> | 2016-09-07 09:55:40 +0200 |
commit | 0a9fb7b7ea94b3d7554ca29c3a40057d22ec1f01 (patch) | |
tree | 35fd967e371189cab8cb7b31510522bf34d33c37 /doc | |
parent | db0b231f17fb2148772181626235e2644eb67c3e (diff) | |
download | numpy-0a9fb7b7ea94b3d7554ca29c3a40057d22ec1f01.tar.gz |
DOC: change version references from x.y to x.y.z
Diffstat (limited to 'doc')
-rw-r--r-- | doc/HOWTO_DOCUMENT.rst.txt | 4 | ||||
-rw-r--r-- | doc/HOWTO_RELEASE.rst.txt | 2 | ||||
-rw-r--r-- | doc/source/reference/arrays.ndarray.rst | 2 | ||||
-rw-r--r-- | doc/source/reference/c-api.array.rst | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/doc/HOWTO_DOCUMENT.rst.txt b/doc/HOWTO_DOCUMENT.rst.txt index 169b87df4..272dd6bf2 100644 --- a/doc/HOWTO_DOCUMENT.rst.txt +++ b/doc/HOWTO_DOCUMENT.rst.txt @@ -154,8 +154,8 @@ The sections of the docstring are: :: - .. note:: Deprecated in NumPy 1.6 - `ndobj_old` will be removed in NumPy 2.0, it is replaced by + .. note:: Deprecated in NumPy 1.6.0 + `ndobj_old` will be removed in NumPy 2.0.0, it is replaced by `ndobj_new` because the latter works also with array subclasses. 3. **Extended Summary** diff --git a/doc/HOWTO_RELEASE.rst.txt b/doc/HOWTO_RELEASE.rst.txt index 6d0d54e89..bad3e22d8 100644 --- a/doc/HOWTO_RELEASE.rst.txt +++ b/doc/HOWTO_RELEASE.rst.txt @@ -302,7 +302,7 @@ to public keyservers, with a command such as:: Apply patch to fix bogus strides -------------------------------- -NPY_RELAXED_STRIDE_CHECKING was made the default in NumPy 1.10 and bogus +NPY_RELAXED_STRIDE_CHECKING was made the default in NumPy 1.10.0 and bogus strides are used in the development branch to smoke out problems. The `patch <https://github.com/numpy/numpy/pull/5996>`_ should be updated if necessary and applied to the release branch to rationalize the strides. diff --git a/doc/source/reference/arrays.ndarray.rst b/doc/source/reference/arrays.ndarray.rst index bd6821b62..14d35271e 100644 --- a/doc/source/reference/arrays.ndarray.rst +++ b/doc/source/reference/arrays.ndarray.rst @@ -560,7 +560,7 @@ Matrix Multiplication: .. note:: Matrix operators ``@`` and ``@=`` were introduced in Python 3.5 - following PEP465. NumPy 1.10 has a preliminary implementation of ``@`` + following PEP465. NumPy 1.10.0 has a preliminary implementation of ``@`` for testing purposes. Further documentation can be found in the :func:`matmul` documentation. diff --git a/doc/source/reference/c-api.array.rst b/doc/source/reference/c-api.array.rst index 4ab276d9a..45de1896c 100644 --- a/doc/source/reference/c-api.array.rst +++ b/doc/source/reference/c-api.array.rst @@ -2291,7 +2291,7 @@ an element copier function as a primitive.:: Array Iterators --------------- -As of NumPy 1.6, these array iterators are superceded by +As of NumPy 1.6.0, these array iterators are superceded by the new array iterator, :c:type:`NpyIter`. An array iterator is a simple way to access the elements of an |