diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-11-01 17:46:27 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-11-01 17:48:23 -0700 |
commit | 34051eb5427869a62bee6809a8d8c89ba52a7600 (patch) | |
tree | 00e652b222a99c0af1bf263a9d15c3e87b76e529 | |
parent | d07e84c499aaaa04b0723bf80e7c41aba7b5d51c (diff) | |
download | numpy-34051eb5427869a62bee6809a8d8c89ba52a7600.tar.gz |
DOC: Update 1.10.2 release notes to mention fix to numpy.i
-rw-r--r-- | doc/release/1.10.2-notes.rst | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/doc/release/1.10.2-notes.rst b/doc/release/1.10.2-notes.rst index 8a2a827d7..930e55ea7 100644 --- a/doc/release/1.10.2-notes.rst +++ b/doc/release/1.10.2-notes.rst @@ -6,9 +6,22 @@ adds various build and release improvements. Numpy 1.10.1 supports Python 2.6 - 2.7 and 3.2 - 3.5. + +Compatibility notes +=================== + +fix swig bug in ``numpy.i`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Relaxed stride checking revealed a bug in ``array_is_fortran(a)``, that was +using PyArray_ISFORTRAN to check for Fortran contiguity instead of +PyArray_IS_F_CONTIGUOUS. You may want to regenerate swigged files using the +updated numpy.i + + Issues Fixed ============ +* gh-6590 Fortran Array problem in numpy 1.10. * gh-6563 Intent(out) broken in recent versions of f2py. * gh-6530 The partition function errors out on empty input. * gh-6498 Mention change in default casting rule in 1.10 release notes. @@ -47,11 +60,16 @@ The following PRs in master have been backported to 1.10.2 * gh-6562 BUG: Disable view safety checks in recarray. * gh-6567 BUG: Revert some import * fixes in f2py. * gh-6577 BUG: Fix for #6569, allowing build_ext --inplace -* gh-6579 MAINT: Fix mistake in doc upload rule +* gh-6579 MAINT: Fix mistake in doc upload rule. +* gh-6596 BUG: Fix swig for relaxed stride checking. The following PR reverted initial work for mingwpy. * gh-6536 BUG: Revert gh-5614 to fix non-windows build problems + +And the this PR reverted a fix for np.lib.split that undid some behavior +that will be standard in 1.11. + * gh-6576 BUG: Revert gh-6376 to fix split behavior for empty arrays. Notes |