Skip to content

Commit

Permalink
Merge pull request #20945 from charris/prepare-for-1.22.2-release
Browse files Browse the repository at this point in the history
REL: Prepare for the NumPy 1.22.2 release.
  • Loading branch information
charris committed Jan 30, 2022
2 parents e2b5201 + 9d4c486 commit aa358cc
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .mailmap
Expand Up @@ -111,12 +111,13 @@ Bharat Raghunathan <bharatraghunthan9767@gmail.com> <bharatr@symphonyai.com>
Bob Eldering <eldering@jive.eu>
Brent Brewington <brent.brewington@gmail.com>
Brett R Murphy <bmurphy@enthought.com>
Brigitta Sipocz <bsipocz@gmail.com> <b.sipocz@gmail.com>
Brian Soto <iambriansoto@gmail.com>
Brian Soto <iambriansoto@gmail.com> <theintrocode@gmail.com>
Brian Soto <iambriansoto@gmail.com> <Iamsoto@users.noreply.github.com>
Brian Soto <iambriansoto@gmail.com> <theintrocode@gmail.com>
Brigitta Sipocz <bsipocz@gmail.com> <b.sipocz@gmail.com>
Bryan Van de Ven <bryanv@continuum.io> Bryan Van de Ven <bryan@Laptop-3.local>
Bryan Van de Ven <bryanv@continuum.io> Bryan Van de Ven <bryan@laptop.local>
Brénainn Woodsend <bwoodsend@gmail.com>
Bui Duc Minh <buiducminh287@gmail.com> <41239569+Mibu287@users.noreply.github.com>
Carl Kleffner <cmkleffner@gmail.com>
Carl Leake <leakec57@gmail.com>
Expand Down Expand Up @@ -231,12 +232,13 @@ Jack J. Woehr <jwoehr@softwoehr.com>
Jaime Fernandez <jaime.frio@gmail.com>
Jaime Fernandez <jaime.frio@gmail.com> <jaime.fernandez@hp.com>
Jaime Fernandez <jaime.frio@gmail.com> <jaimefrio@google.com>
Jamie Macey <dodgerbarker@gmail.com>
Jakob Jakobson <jakobjakobson13@posteo.de>
Jakob Jakobson <jakobjakobson13@posteo.de> <43045863+jakobjakobson13@users.noreply.github.com>
James Bourbeau <jrbourbeau@gmail.com> <jrbourbeau@users.noreply.github.com>
James Webber <jamestwebber@gmail.com>
Jamie Macey <dodgerbarker@gmail.com>
Jan Schlüter <jan.schlueter@ofai.at> <github@jan-schlueter.de>
Janus Heide <janusheide@gmail.com>
Jarrod Millman <millman@berkeley.edu> Jarrod Millman <jarrod.millman@gmail.com>
Jason Grout <jason-github@creativetrax.com> <jason.grout@drake.edu>
Jason King <pizza@netspace.net.au>
Expand Down
38 changes: 38 additions & 0 deletions doc/changelog/1.22.2-changelog.rst
@@ -0,0 +1,38 @@

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

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

* Andrew J. Hesford +
* Bas van Beek
* Brénainn Woodsend +
* Charles Harris
* Hood Chatham
* Janus Heide +
* Leo Singer
* Mukulika Pahari
* Niyas Sait
* Ralf Gommers
* Serge Guelton

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

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

* `#20842 <https://github.com/numpy/numpy/pull/20842>`__: BLD: Add NPY_DISABLE_SVML env var to opt out of SVML
* `#20843 <https://github.com/numpy/numpy/pull/20843>`__: BUG: Fix build of third party extensions with Py_LIMITED_API
* `#20844 <https://github.com/numpy/numpy/pull/20844>`__: TYP: Fix pyright being unable to infer the ``real`` and ``imag``...
* `#20845 <https://github.com/numpy/numpy/pull/20845>`__: BUG: Fix comparator function signatures
* `#20906 <https://github.com/numpy/numpy/pull/20906>`__: BUG: Avoid importing ``numpy.distutils`` on import numpy.testing
* `#20907 <https://github.com/numpy/numpy/pull/20907>`__: MAINT: remove outdated mingw32 fseek support
* `#20908 <https://github.com/numpy/numpy/pull/20908>`__: TYP: Relax the return type of ``np.vectorize``
* `#20909 <https://github.com/numpy/numpy/pull/20909>`__: BUG: fix f2py's define for threading when building with Mingw
* `#20910 <https://github.com/numpy/numpy/pull/20910>`__: BUG: distutils: fix building mixed C/Fortran extensions
* `#20912 <https://github.com/numpy/numpy/pull/20912>`__: DOC,TST: Fix Pandas code example as per new release
* `#20935 <https://github.com/numpy/numpy/pull/20935>`__: TYP, MAINT: Add annotations for ``flatiter.__setitem__``
* `#20936 <https://github.com/numpy/numpy/pull/20936>`__: MAINT, TYP: Added missing where typehints in ``fromnumeric.pyi``
* `#20937 <https://github.com/numpy/numpy/pull/20937>`__: BUG: Fix build_ext interaction with non numpy extensions
* `#20938 <https://github.com/numpy/numpy/pull/20938>`__: BUG: Fix missing intrinsics for windows/arm64 target
44 changes: 44 additions & 0 deletions doc/source/release/1.22.2-notes.rst
Expand Up @@ -7,4 +7,48 @@ NumPy 1.22.2 Release Notes
The NumPy 1.22.2 is maintenance release that fixes bugs discovered after the
1.22.1 release. Notable fixes are:

- Several build related fixes for downstream projects and other platforms.
- Various Annotation fixes/additions.
- Numpy wheels for Windows will use the 1.41 tool chain, fixing downstream link
problems for projects using NumPy provided libraries on Windows.

The Python versions supported for this release are 3.8-3.10.

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

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

* Andrew J. Hesford +
* Bas van Beek
* Brénainn Woodsend +
* Charles Harris
* Hood Chatham
* Janus Heide +
* Leo Singer
* Mukulika Pahari
* Niyas Sait
* Ralf Gommers
* Serge Guelton

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

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

* `#20842 <https://github.com/numpy/numpy/pull/20842>`__: BLD: Add NPY_DISABLE_SVML env var to opt out of SVML
* `#20843 <https://github.com/numpy/numpy/pull/20843>`__: BUG: Fix build of third party extensions with Py_LIMITED_API
* `#20844 <https://github.com/numpy/numpy/pull/20844>`__: TYP: Fix pyright being unable to infer the ``real`` and ``imag``...
* `#20845 <https://github.com/numpy/numpy/pull/20845>`__: BUG: Fix comparator function signatures
* `#20906 <https://github.com/numpy/numpy/pull/20906>`__: BUG: Avoid importing ``numpy.distutils`` on import numpy.testing
* `#20907 <https://github.com/numpy/numpy/pull/20907>`__: MAINT: remove outdated mingw32 fseek support
* `#20908 <https://github.com/numpy/numpy/pull/20908>`__: TYP: Relax the return type of ``np.vectorize``
* `#20909 <https://github.com/numpy/numpy/pull/20909>`__: BUG: fix f2py's define for threading when building with Mingw
* `#20910 <https://github.com/numpy/numpy/pull/20910>`__: BUG: distutils: fix building mixed C/Fortran extensions
* `#20912 <https://github.com/numpy/numpy/pull/20912>`__: DOC,TST: Fix Pandas code example as per new release
* `#20935 <https://github.com/numpy/numpy/pull/20935>`__: TYP, MAINT: Add annotations for ``flatiter.__setitem__``
* `#20936 <https://github.com/numpy/numpy/pull/20936>`__: MAINT, TYP: Added missing where type hints in ``fromnumeric.pyi``
* `#20937 <https://github.com/numpy/numpy/pull/20937>`__: BUG: Fix build_ext interaction with non numpy extensions
* `#20938 <https://github.com/numpy/numpy/pull/20938>`__: BUG: Fix missing intrinsics for windows/arm64 target

0 comments on commit aa358cc

Please sign in to comment.