summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2022-09-09 13:18:52 -0600
committerCharles Harris <charlesr.harris@gmail.com>2022-09-09 13:18:52 -0600
commit88d0af7af4ef8b2087d2fe8b3e2575a73887501f (patch)
treea5d38dc26be0ad2bfa27b9d8260eb00fba01173f
parent397b6e51b446647839f548529d06dc80bf0a4c53 (diff)
downloadnumpy-88d0af7af4ef8b2087d2fe8b3e2575a73887501f.tar.gz
REL: Update main after 1.23.3 release.
-rw-r--r--.mailmap3
-rw-r--r--doc/changelog/1.23.3-changelog.rst43
-rw-r--r--doc/source/release.rst1
-rw-r--r--doc/source/release/1.23.3-notes.rst56
4 files changed, 103 insertions, 0 deletions
diff --git a/.mailmap b/.mailmap
index f2115b6bc..8ff3c21e8 100644
--- a/.mailmap
+++ b/.mailmap
@@ -212,6 +212,7 @@ Frederic Bastien <nouiz@nouiz.org> Frederic <nouiz@nouiz.org>
FX Coudert <fxcoudert@gmail.com>
Gael Varoquaux <gael.varoquaux@normalesup.org>
Gagandeep Singh <gdp.1807@gmail.com>
+Gavin Zhang <zhanggan@cn.ibm.com>
Gerrit Holl <gerrit.holl@gmail.com> <gerrit.holl@utoronto.ca>
Gerrit Holl <gerrit.holl@gmail.com> <g.holl@reading.ac.uk>
Giuseppe Venturini <ggventurini@users.noreply.github.com>
@@ -234,6 +235,7 @@ Hemil Desai <desai38@purdue.edu>
Himanshu <addyjeridiq@gmail.com>
Hiroyuki V. Yamazaki <hiroyuki.vincent.yamazaki@gmail.com>
Hugo van Kemenade <hugovk@users.noreply.github.com>
+Iantra Solari <iantrasolari@gmail.com>
I-Shen Leong <i-shenl@activestate.com>
Imen Rajhi <imen.rajhi.ir@gmail.com>
Inessa Pawson <albuscode@gmail.com>
@@ -445,6 +447,7 @@ Samesh Lakhotia <samesh.lakhotia@gmail.com>
Samesh Lakhotia <samesh.lakhotia@gmail.com> <43701530+sameshl@users.noreply.github.com>
Sami Salonen <ssalonen@gmail.com> <sami.salonen@eniram.fi>
Sanchez Gonzalez Alvaro <as12513@imperial.ac.uk>
+Saransh Chopra <saransh0701@gmail.com>
Saullo Giovani <saullogiovani@gmail.com>
Saurabh Mehta <e.samehta@gmail.com>
Sayantika Banik <sayantikabanik122@gmail.com>
diff --git a/doc/changelog/1.23.3-changelog.rst b/doc/changelog/1.23.3-changelog.rst
new file mode 100644
index 000000000..c29a83805
--- /dev/null
+++ b/doc/changelog/1.23.3-changelog.rst
@@ -0,0 +1,43 @@
+
+Contributors
+============
+
+A total of 16 people contributed to this release. People with a "+" by their
+names contributed a patch for the first time.
+
+* Aaron Meurer
+* Bas van Beek
+* Charles Harris
+* Ganesh Kathiresan
+* Gavin Zhang +
+* Iantra Solari+
+* Jyn Spring 琴春 +
+* Matti Picus
+* Rafael Cardoso Fernandes Sousa
+* Rafael Sousa +
+* Ralf Gommers
+* Rin Cat (鈴猫) +
+* Saransh Chopra +
+* Sayed Adel
+* Sebastian Berg
+* Serge Guelton
+
+Pull requests merged
+====================
+
+A total of 14 pull requests were merged for this release.
+
+* `#22136 <https://github.com/numpy/numpy/pull/22136>`__: BLD: Add Python 3.11 wheels to aarch64 build
+* `#22148 <https://github.com/numpy/numpy/pull/22148>`__: MAINT: Update setup.py for Python 3.11.
+* `#22155 <https://github.com/numpy/numpy/pull/22155>`__: CI: Test NumPy build against old versions of GCC(6, 7, 8)
+* `#22156 <https://github.com/numpy/numpy/pull/22156>`__: MAINT: support IBM i system
+* `#22195 <https://github.com/numpy/numpy/pull/22195>`__: BUG: Fix circleci build
+* `#22214 <https://github.com/numpy/numpy/pull/22214>`__: BUG: Expose heapsort algorithms in a shared header
+* `#22215 <https://github.com/numpy/numpy/pull/22215>`__: BUG: Support using libunwind for backtrack
+* `#22216 <https://github.com/numpy/numpy/pull/22216>`__: MAINT: fix an incorrect pointer type usage in f2py
+* `#22220 <https://github.com/numpy/numpy/pull/22220>`__: BUG: change overloads to play nice with pyright.
+* `#22221 <https://github.com/numpy/numpy/pull/22221>`__: TST,BUG: Use fork context to fix MacOS savez test
+* `#22222 <https://github.com/numpy/numpy/pull/22222>`__: TYP,BUG: Reduce argument validation in C-based ``__class_getitem__``
+* `#22223 <https://github.com/numpy/numpy/pull/22223>`__: TST: ensure ``np.equal.reduce`` raises a ``TypeError``
+* `#22224 <https://github.com/numpy/numpy/pull/22224>`__: BUG: Fix the implementation of numpy.array_api.vecdot
+* `#22230 <https://github.com/numpy/numpy/pull/22230>`__: BUG: Better report integer division overflow (backport)
diff --git a/doc/source/release.rst b/doc/source/release.rst
index fa749f468..4d562f925 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -6,6 +6,7 @@ Release notes
:maxdepth: 3
1.24.0 <release/1.24.0-notes>
+ 1.23.3 <release/1.23.3-notes>
1.23.2 <release/1.23.2-notes>
1.23.1 <release/1.23.1-notes>
1.23.0 <release/1.23.0-notes>
diff --git a/doc/source/release/1.23.3-notes.rst b/doc/source/release/1.23.3-notes.rst
new file mode 100644
index 000000000..882206f82
--- /dev/null
+++ b/doc/source/release/1.23.3-notes.rst
@@ -0,0 +1,56 @@
+.. currentmodule:: numpy
+
+==========================
+NumPy 1.23.3 Release Notes
+==========================
+NumPy 1.23.3 is a maintenance release that fixes bugs discovered after the
+1.23.2 release. There is no major theme for this release, the main improvements
+are for some downstream builds and some annotation corner cases. The Python
+versions supported for this release are 3.8-3.11.
+
+Note that we will move to MacOS 11 for the NumPy 1.23.4 release, the 10.15
+version currently used will no longer be supported by our build infrastructure
+at that point.
+
+Contributors
+============
+
+A total of 16 people contributed to this release. People with a "+" by their
+names contributed a patch for the first time.
+
+* Aaron Meurer
+* Bas van Beek
+* Charles Harris
+* Ganesh Kathiresan
+* Gavin Zhang +
+* Iantra Solari+
+* Jyn Spring 琴春 +
+* Matti Picus
+* Rafael Cardoso Fernandes Sousa
+* Rafael Sousa +
+* Ralf Gommers
+* Rin Cat (鈴猫) +
+* Saransh Chopra +
+* Sayed Adel
+* Sebastian Berg
+* Serge Guelton
+
+Pull requests merged
+====================
+
+A total of 14 pull requests were merged for this release.
+
+* `#22136 <https://github.com/numpy/numpy/pull/22136>`__: BLD: Add Python 3.11 wheels to aarch64 build
+* `#22148 <https://github.com/numpy/numpy/pull/22148>`__: MAINT: Update setup.py for Python 3.11.
+* `#22155 <https://github.com/numpy/numpy/pull/22155>`__: CI: Test NumPy build against old versions of GCC(6, 7, 8)
+* `#22156 <https://github.com/numpy/numpy/pull/22156>`__: MAINT: support IBM i system
+* `#22195 <https://github.com/numpy/numpy/pull/22195>`__: BUG: Fix circleci build
+* `#22214 <https://github.com/numpy/numpy/pull/22214>`__: BUG: Expose heapsort algorithms in a shared header
+* `#22215 <https://github.com/numpy/numpy/pull/22215>`__: BUG: Support using libunwind for backtrack
+* `#22216 <https://github.com/numpy/numpy/pull/22216>`__: MAINT: fix an incorrect pointer type usage in f2py
+* `#22220 <https://github.com/numpy/numpy/pull/22220>`__: BUG: change overloads to play nice with pyright.
+* `#22221 <https://github.com/numpy/numpy/pull/22221>`__: TST,BUG: Use fork context to fix MacOS savez test
+* `#22222 <https://github.com/numpy/numpy/pull/22222>`__: TYP,BUG: Reduce argument validation in C-based ``__class_getitem__``
+* `#22223 <https://github.com/numpy/numpy/pull/22223>`__: TST: ensure ``np.equal.reduce`` raises a ``TypeError``
+* `#22224 <https://github.com/numpy/numpy/pull/22224>`__: BUG: Fix the implementation of numpy.array_api.vecdot
+* `#22230 <https://github.com/numpy/numpy/pull/22230>`__: BUG: Better report integer division overflow (backport)