Skip to content

Commit b897953

Browse files
authored
Merge pull request numpy#17280 from charris/prepare-1.19.2-release
REL: Prepare for the NumPy 1.19.2 release.
2 parents a9f4bc8 + b879d5f commit b897953

File tree

4 files changed

+71
-35
lines changed

4 files changed

+71
-35
lines changed

.mailmap

+1
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@ Shota Kawabuchi <[email protected]> skwbc <shota.kawabuchi+GitHub
232232
Siavash Eliasi <[email protected]> siavashserver <[email protected]>
233233
Simon Gasse <[email protected]> sgasse <[email protected]>
234234
Søren Rasmussen <[email protected]> sorenrasmussenai <[email protected]>
235+
Stefan Behnel <[email protected]> scoder <[email protected]>
235236
Stefan van der Walt <[email protected]> Stefan van der Walt <[email protected]>
236237
Stefan van der Walt <[email protected]> Stefan van der Walt <[email protected]>
237238
Stephan Hoyer <[email protected]> Stephan Hoyer <[email protected]>

doc/changelog/1.19.2-changelog.rst

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
2+
Contributors
3+
============
4+
5+
A total of 8 people contributed to this release. People with a "+" by their
6+
names contributed a patch for the first time.
7+
8+
* Charles Harris
9+
* Matti Picus
10+
* Pauli Virtanen
11+
* Philippe Ombredanne +
12+
* Sebastian Berg
13+
* Stefan Behnel +
14+
* Stephan Loyd +
15+
* Zac Hatfield-Dodds
16+
17+
Pull requests merged
18+
====================
19+
20+
A total of 9 pull requests were merged for this release.
21+
22+
* `#16959 <https://github.com/numpy/numpy/pull/16959>`__: TST: Change aarch64 to arm64 in travis.yml.
23+
* `#16998 <https://github.com/numpy/numpy/pull/16998>`__: MAINT: Configure hypothesis in ``np.test()`` for determinism,...
24+
* `#17000 <https://github.com/numpy/numpy/pull/17000>`__: BLD: pin setuptools < 49.2.0
25+
* `#17015 <https://github.com/numpy/numpy/pull/17015>`__: ENH: Add NumPy declarations to be used by Cython 3.0+
26+
* `#17125 <https://github.com/numpy/numpy/pull/17125>`__: BUG: Remove non-threadsafe sigint handling from fft calculation
27+
* `#17243 <https://github.com/numpy/numpy/pull/17243>`__: BUG: core: fix ilp64 blas dot/vdot/... for strides > int32 max
28+
* `#17244 <https://github.com/numpy/numpy/pull/17244>`__: DOC: Use SPDX license expressions with correct license
29+
* `#17245 <https://github.com/numpy/numpy/pull/17245>`__: DOC: Fix the link to the quick-start in the old API functions
30+
* `#17272 <https://github.com/numpy/numpy/pull/17272>`__: BUG: fix pickling of arrays larger than 2GiB

doc/release/upcoming_changes/16986.improvement.rst

-7
This file was deleted.

doc/source/release/1.19.2-notes.rst

+40-28
Original file line numberDiff line numberDiff line change
@@ -4,42 +4,54 @@
44
NumPy 1.19.2 Release Notes
55
==========================
66

7+
NumPy 1.19.2 fixes several bugs, prepares for the upcoming Cython 3.x release.
8+
and pins setuptools to keep distutils working while upstream modifications are
9+
ongoing. The aarch64 wheels are built with the latest manylinux2014 release
10+
that fixes the problem of differing page sizes used by different linux distros.
711

8-
Highlights
9-
==========
12+
This release supports Python 3.6-3.8. Cython >= 0.29.21 needs to be used when
13+
building with Python 3.9 for testing purposes.
1014

15+
There is a known problem with Windows 10 version=2004 and OpenBLAS svd that we
16+
are trying to debug. If you are running that Windows version you should use a
17+
NumPy version that links to the MKL library, earlier Windows versions are fine.
1118

12-
New functions
13-
=============
14-
15-
16-
Deprecations
19+
Improvements
1720
============
1821

22+
Add NumPy declarations for Cython 3.0 and later
23+
-----------------------------------------------
24+
The pxd declarations for Cython 3.0 were improved to avoid using deprecated
25+
NumPy C-API features. Extension modules built with Cython 3.0+ that use NumPy
26+
can now set the C macro ``NPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION`` to avoid
27+
C compiler warnings about deprecated API usage.
1928

20-
Future Changes
21-
==============
22-
23-
24-
Expired deprecations
25-
====================
26-
27-
28-
Compatibility notes
29-
===================
30-
31-
32-
C API changes
33-
=============
34-
35-
36-
New Features
29+
Contributors
3730
============
3831

32+
A total of 8 people contributed to this release. People with a "+" by their
33+
names contributed a patch for the first time.
3934

40-
Improvements
41-
============
35+
* Charles Harris
36+
* Matti Picus
37+
* Pauli Virtanen
38+
* Philippe Ombredanne +
39+
* Sebastian Berg
40+
* Stefan Behnel +
41+
* Stephan Loyd +
42+
* Zac Hatfield-Dodds
4243

44+
Pull requests merged
45+
====================
4346

44-
Changes
45-
=======
47+
A total of 9 pull requests were merged for this release.
48+
49+
* `#16959 <https://github.com/numpy/numpy/pull/16959>`__: TST: Change aarch64 to arm64 in travis.yml.
50+
* `#16998 <https://github.com/numpy/numpy/pull/16998>`__: MAINT: Configure hypothesis in ``np.test()`` for determinism,...
51+
* `#17000 <https://github.com/numpy/numpy/pull/17000>`__: BLD: pin setuptools < 49.2.0
52+
* `#17015 <https://github.com/numpy/numpy/pull/17015>`__: ENH: Add NumPy declarations to be used by Cython 3.0+
53+
* `#17125 <https://github.com/numpy/numpy/pull/17125>`__: BUG: Remove non-threadsafe sigint handling from fft calculation
54+
* `#17243 <https://github.com/numpy/numpy/pull/17243>`__: BUG: core: fix ilp64 blas dot/vdot/... for strides > int32 max
55+
* `#17244 <https://github.com/numpy/numpy/pull/17244>`__: DOC: Use SPDX license expressions with correct license
56+
* `#17245 <https://github.com/numpy/numpy/pull/17245>`__: DOC: Fix the link to the quick-start in the old API functions
57+
* `#17272 <https://github.com/numpy/numpy/pull/17272>`__: BUG: fix pickling of arrays larger than 2GiB

0 commit comments

Comments
 (0)