diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2014-07-06 23:49:41 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2014-07-06 23:49:41 -0600 |
commit | dc98a3df98645c2d074ee18ccc8357384e208f02 (patch) | |
tree | 9c02c55ef617c80f5bd27f6b06325b89db7abce8 /doc | |
parent | 594b0de1f09fde18c9c786994d7146a99f35e7d0 (diff) | |
parent | d1422d35d7ad70ebb2c7e41eadd14f27f8cc7e31 (diff) | |
download | numpy-dc98a3df98645c2d074ee18ccc8357384e208f02.tar.gz |
Merge pull request #4671 from charris/prepare-1.10-devel
MAINT: start 1.10-devel.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.10.0-notes.rst | 38 | ||||
-rw-r--r-- | doc/source/reference/ufuncs.rst | 17 | ||||
-rw-r--r-- | doc/source/release.rst | 1 |
3 files changed, 47 insertions, 9 deletions
diff --git a/doc/release/1.10.0-notes.rst b/doc/release/1.10.0-notes.rst new file mode 100644 index 000000000..3f52bd5af --- /dev/null +++ b/doc/release/1.10.0-notes.rst @@ -0,0 +1,38 @@ +NumPy 1.10.0 Release Notes +************************** + +This release supports Python 2.6 - 2.7 and 3.2 - 3.4. + + +Highlights +========== + + +Dropped Support +=============== +* The polytemplate.py file has been removed. + + +Future Changes +============== + + +Compatibility notes +=================== +NPY_RELAXED_STRIDE_CHECKING is now true by default. + + +New Features +============ + + +Improvements +============ + + +Changes +======= + + +Deprecations +============ diff --git a/doc/source/reference/ufuncs.rst b/doc/source/reference/ufuncs.rst index 2ae794f59..3d6112058 100644 --- a/doc/source/reference/ufuncs.rst +++ b/doc/source/reference/ufuncs.rst @@ -313,16 +313,15 @@ advanced usage and will not typically be used. .. versionadded:: 1.6 + May be 'no', 'equiv', 'safe', 'same_kind', or 'unsafe'. + See :func:`can_cast` for explanations of the parameter values. + Provides a policy for what kind of casting is permitted. For compatibility - with previous versions of NumPy, this defaults to 'unsafe'. May be 'no', - 'equiv', 'safe', 'same_kind', or 'unsafe'. See :func:`can_cast` for - explanations of the parameter values. - - In a future version of numpy, this argument will default to - 'same_kind'. As part of this transition, starting in version 1.7, - ufuncs will produce a DeprecationWarning for calls which are - allowed under the 'unsafe' rules, but not under the 'same_kind' - rules. + with previous versions of NumPy, this defaults to 'unsafe' for numpy < 1.7. + In numpy 1.7 a transition to 'same_kind' was begun where ufuncs produce a + DeprecationWarning for calls which are allowed under the 'unsafe' + rules, but not under the 'same_kind' rules. In numpy 1.10 the default + will be 'same_kind'. *order* diff --git a/doc/source/release.rst b/doc/source/release.rst index eb366661f..4df0631d4 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -2,6 +2,7 @@ Release Notes ************* +.. include:: ../release/1.10.0-notes.rst .. include:: ../release/1.9.0-notes.rst .. include:: ../release/1.8.0-notes.rst .. include:: ../release/1.7.2-notes.rst |