diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-11-01 09:41:29 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-11-01 09:41:29 -0700 |
commit | 0ddb6d19cbddee3fae6a0dc8ba5e1151a0d5f553 (patch) | |
tree | 02a433e180ba0b3fd9409fddad0d8e8ff07841c8 | |
parent | eb40f65c66545a717b36b1af669b1ee00fbfc508 (diff) | |
parent | bd92d8c8d8f9a73bf8465421212b16d5713817b6 (diff) | |
download | numpy-0ddb6d19cbddee3fae6a0dc8ba5e1151a0d5f553.tar.gz |
Merge pull request #3997 from juliantaylor/release-notes
DOC: add 1.7.2 release notes
-rw-r--r-- | doc/release/1.7.2-notes.rst | 45 | ||||
-rw-r--r-- | doc/source/release.rst | 1 |
2 files changed, 46 insertions, 0 deletions
diff --git a/doc/release/1.7.2-notes.rst b/doc/release/1.7.2-notes.rst new file mode 100644 index 000000000..b88e168a2 --- /dev/null +++ b/doc/release/1.7.2-notes.rst @@ -0,0 +1,45 @@ +NumPy 1.7.2 Release Notes +************************* + +This is a bugfix only release in the 1.7.x series. + + +Issues fixed +============ + +* gh-3153: Do not reuse nditer buffers when not filled enough +* gh-3192: f2py crashes with UnboundLocalError exception +* gh-442: Concatenate with axis=None now requires equal number of array elements +* gh-2485: Fix for astype('S') string truncate issue +* gh-3312: bug in count_nonzero +* gh-2684: numpy.ma.average casts complex to float under certain conditions +* gh-2403: masked array with named components does not behave as expected +* gh-2495: np.ma.compress treated inputs in wrong order +* gh-576: add __len__ method to ma.mvoid +* gh-3364: reduce performance regression of mmap slicing +* gh-3421: fix non-swapping strided copies in GetStridedCopySwap +* gh-3373: fix small leak in datetime metadata initialization +* gh-2791: add platform specific python include directories to search paths +* gh-3168: fix undefined function and add integer divisions +* gh-3301: memmap does not work with TemporaryFile in python3 +* gh-3057: distutils.misc_util.get_shared_lib_extension returns wrong debug extension +* gh-3472: add module extensions to load_library search list +* gh-3324: Make comparison function (gt, ge, ...) respect __array_priority__ +* gh-3497: np.insert behaves incorrectly with argument 'axis=-1' +* gh-3541: make preprocessor tests consistent in halffloat.c +* gh-3458: array_ass_boolean_subscript() writes 'non-existent' data to array +* gh-2892: Regression in ufunc.reduceat with zero-sized index array +* gh-3608: Regression when filling struct from tuple +* gh-3701: add support for Python 3.4 ast.NameConstant +* gh-3712: do not assume that GIL is enabled in xerbla +* gh-3712: fix LAPACK error handling in lapack_litemodule +* gh-3728: f2py fix decref on wrong object +* gh-3743: Hash changed signature in Python 3.3 +* gh-3793: scalar int hashing broken on 64 bit python3 +* gh-3160: SandboxViolation easyinstalling 1.7.0 on Mac OS X 10.8.3 +* gh-3871: npy_math.h has invalid isinf for Solaris with SUNWspro12.2 +* gh-2561: Disable check for oldstyle classes in python3 +* gh-3900: Ensure NotImplemented is passed on in MaskedArray ufunc's +* gh-2052: del scalar subscript causes segfault +* gh-3832: fix a few uninitialized uses and memleaks +* gh-3971: f2py changed string.lowercase to string.ascii_lowercase for python3 diff --git a/doc/source/release.rst b/doc/source/release.rst index d2b81e8ce..eb366661f 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -4,6 +4,7 @@ Release Notes .. include:: ../release/1.9.0-notes.rst .. include:: ../release/1.8.0-notes.rst +.. include:: ../release/1.7.2-notes.rst .. include:: ../release/1.7.1-notes.rst .. include:: ../release/1.7.0-notes.rst .. include:: ../release/1.6.2-notes.rst |