Skip to content

Commit b2748c6

Browse files
committed
Merge pull request numpy#6574 from charris/prepare-1.10.2-notes
DOC: Release notes for Numpy 1.10.2.
2 parents b4c4fe9 + 8363b2e commit b2748c6

File tree

2 files changed

+61
-0
lines changed

2 files changed

+61
-0
lines changed

doc/release/1.10.2-notes.rst

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
NumPy 1.10.2 Release Notes
2+
**************************
3+
4+
This release deals with a number of bugs that turned up in 1.10.1 and
5+
adds various build and release improvements.
6+
7+
Numpy 1.10.1 supports Python 2.6 - 2.7 and 3.2 - 3.5.
8+
9+
Issues Fixed
10+
============
11+
12+
* gh-6563 Intent(out) broken in recent versions of f2py.
13+
* gh-6530 The partition function errors out on empty input.
14+
* gh-6498 Mention change in default casting rule in 1.10 release notes.
15+
* gh-6497 Failure of reduce operation on recarrays.
16+
* gh-6495 Unrecognized command line option '-ffpe-summary' in gfortran.
17+
* gh-6491 Error in broadcasting stride_tricks array.
18+
* gh-6467 Performance regression for record array access.
19+
* gh-6462 Median of empty array produces IndexError.
20+
21+
Merged PRs
22+
==========
23+
24+
The following PRs in master have been backported to 1.10.2
25+
26+
* gh-5773 MAINT: Hide testing helper tracebacks when using them with pytest.
27+
* gh-6208 MAINT: Speedup field access by removing unneeded safety checks.
28+
* gh-6460 BUG: Replacing the os.environ.clear by less invasive procedure.
29+
* gh-6470 BUG: Fix AttributeError in numpy distutils.
30+
* gh-6472 MAINT: Use Python 3.5 instead of 3.5-dev for travis 3.5 testing.
31+
* gh-6474 REL: Update Paver script for sdist and auto-switch test warnings.
32+
* gh-6478 BUG: Fix Intel compiler flags for OS X build.
33+
* gh-6481 MAINT: LIBPATH with spaces is now supported Python 2.7+ and Win32.
34+
* gh-6487 BUG: Allow nested use of parameters in definition of arrays in f2py.
35+
* gh-6488 BUG: Extend common blocks rather than overwriting in f2py.
36+
* gh-6499 DOC: Mention that default casting for inplace operations has changed.
37+
* gh-6500 BUG: Recarrays viewed as subarrays don't convert to np.record type.
38+
* gh-6501 REL: Add "make upload" command for built docs, update "make dist".
39+
* gh-6526 BUG: Fix use of __doc__ in setup.py for -OO mode.
40+
* gh-6527 BUG: Fix the IndexError when taking the median of an empty array.
41+
* gh-6537 BUG: Make ma.atleast_* with scalar argument return arrays.
42+
* gh-6538 BUG: Fix ma.masked_values does not shrink mask if requested.
43+
* gh-6546 BUG: Fix inner product regression for non-contiguous arrays.
44+
* gh-6553 BUG: Fix partition and argpartition error for empty input.
45+
* gh-6556 BUG: Error in broadcast_arrays with as_strided array.
46+
* gh-6558 MAINT: Minor update to "make upload" doc build command.
47+
* gh-6562 BUG: Disable view safety checks in recarray.
48+
* gh-6567 BUG: Revert some import * fixes in f2py.
49+
* gh-6577 BUG: Fix for #6569, allowing build_ext --inplace
50+
* gh-6579 MAINT: Fix mistake in doc upload rule
51+
52+
The following PR reverted initial work for mingwpy.
53+
54+
* gh-6536 BUG: revert gh-5614 to fix non-windows build problems
55+
56+
Notes
57+
=====
58+
A bug in the Numpy 1.10.1 release resulted in exceptions being raised for
59+
``RuntimeWarning`` and ``DeprecationWarning`` in projects depending on Numpy.
60+
That has been fixed.

doc/source/release.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Release Notes
33
*************
44

55
.. include:: ../release/1.11.0-notes.rst
6+
.. include:: ../release/1.10.2-notes.rst
67
.. include:: ../release/1.10.1-notes.rst
78
.. include:: ../release/1.10.0-notes.rst
89
.. include:: ../release/1.9.2-notes.rst

0 commit comments

Comments
 (0)