Skip to content

Commit

Permalink
REL: Update master after 1.19.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
charris committed Sep 10, 2020
1 parent f34c7c6 commit 08a51ee
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 0 deletions.
1 change: 1 addition & 0 deletions .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ Shota Kawabuchi <[email protected]> skwbc <shota.kawabuchi+GitHub
Siavash Eliasi <[email protected]> siavashserver <[email protected]>
Simon Gasse <[email protected]> sgasse <[email protected]>
Søren Rasmussen <[email protected]> sorenrasmussenai <[email protected]>
Stefan Behnel <[email protected]> scoder <[email protected]>
Stefan van der Walt <[email protected]> Stefan van der Walt <[email protected]>
Stefan van der Walt <[email protected]> Stefan van der Walt <[email protected]>
Stephan Hoyer <[email protected]> Stephan Hoyer <[email protected]>
Expand Down
30 changes: 30 additions & 0 deletions doc/changelog/1.19.2-changelog.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

Contributors
============

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

* Charles Harris
* Matti Picus
* Pauli Virtanen
* Philippe Ombredanne +
* Sebastian Berg
* Stefan Behnel +
* Stephan Loyd +
* Zac Hatfield-Dodds

Pull requests merged
====================

A total of 9 pull requests were merged for this release.

* `#16959 <https://github.com/numpy/numpy/pull/16959>`__: TST: Change aarch64 to arm64 in travis.yml.
* `#16998 <https://github.com/numpy/numpy/pull/16998>`__: MAINT: Configure hypothesis in ``np.test()`` for determinism,...
* `#17000 <https://github.com/numpy/numpy/pull/17000>`__: BLD: pin setuptools < 49.2.0
* `#17015 <https://github.com/numpy/numpy/pull/17015>`__: ENH: Add NumPy declarations to be used by Cython 3.0+
* `#17125 <https://github.com/numpy/numpy/pull/17125>`__: BUG: Remove non-threadsafe sigint handling from fft calculation
* `#17243 <https://github.com/numpy/numpy/pull/17243>`__: BUG: core: fix ilp64 blas dot/vdot/... for strides > int32 max
* `#17244 <https://github.com/numpy/numpy/pull/17244>`__: DOC: Use SPDX license expressions with correct license
* `#17245 <https://github.com/numpy/numpy/pull/17245>`__: DOC: Fix the link to the quick-start in the old API functions
* `#17272 <https://github.com/numpy/numpy/pull/17272>`__: BUG: fix pickling of arrays larger than 2GiB
1 change: 1 addition & 0 deletions doc/source/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Release Notes
:maxdepth: 3

1.20.0 <release/1.20.0-notes>
1.19.2 <release/1.19.2-notes>
1.19.1 <release/1.19.1-notes>
1.19.0 <release/1.19.0-notes>
1.18.4 <release/1.18.4-notes>
Expand Down
57 changes: 57 additions & 0 deletions doc/source/release/1.19.2-notes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
.. currentmodule:: numpy

==========================
NumPy 1.19.2 Release Notes
==========================

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

This release supports Python 3.6-3.8. Cython >= 0.29.21 needs to be used when
building with Python 3.9 for testing purposes.

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

Improvements
============

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

Contributors
============

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

* Charles Harris
* Matti Picus
* Pauli Virtanen
* Philippe Ombredanne +
* Sebastian Berg
* Stefan Behnel +
* Stephan Loyd +
* Zac Hatfield-Dodds

Pull requests merged
====================

A total of 9 pull requests were merged for this release.

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

0 comments on commit 08a51ee

Please sign in to comment.