summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2022-03-07 12:27:54 -0700
committerGitHub <noreply@github.com>2022-03-07 12:27:54 -0700
commit7d4349e332fcba2bc3f266267421531b3ec5d3e6 (patch)
tree352ac54e3b74675c9820189a1c4c3ac7cc17e9a9
parent254322c17a06c1b9d610c9d5de5cea8c5495d252 (diff)
parent618a74adba01cfb8baec4df5f048f28960bff0ee (diff)
downloadnumpy-1.22.3.tar.gz
Merge pull request #21162 from charris/prepare-for-1.22.3-releasev1.22.3
REL: Prepare for the NumPy 1.22.3 release.
-rw-r--r--.mailmap1
-rw-r--r--doc/changelog/1.22.3-changelog.rst32
-rw-r--r--doc/source/release/1.22.0-notes.rst6
-rw-r--r--doc/source/release/1.22.3-notes.rst39
4 files changed, 74 insertions, 4 deletions
diff --git a/.mailmap b/.mailmap
index d3f8dba95..73e3965a0 100644
--- a/.mailmap
+++ b/.mailmap
@@ -333,6 +333,7 @@ Mattheus Ueckermann <empeeu@yahoo.com>
Matthew Barber <quitesimplymatt@gmail.com>
Matthew Harrigan <harrigan.matthew@gmail.com>
Matthias Bussonnier <bussonniermatthias@gmail.com> <mbussonnier@ucmerced.edu>
+Matthieu Darbois <mayeut@users.noreply.github.com>
Matti Picus <matti.picus@gmail.com>
Maximilian Konrad <maximilianlukaskonrad@hotmail.de>
Melissa Weber Mendonça <melissawm@gmail.com>
diff --git a/doc/changelog/1.22.3-changelog.rst b/doc/changelog/1.22.3-changelog.rst
new file mode 100644
index 000000000..b0ecedc8a
--- /dev/null
+++ b/doc/changelog/1.22.3-changelog.rst
@@ -0,0 +1,32 @@
+
+Contributors
+============
+
+A total of 9 people contributed to this release. People with a "+" by their
+names contributed a patch for the first time.
+
+* @GalaxySnail +
+* Alexandre de Siqueira
+* Bas van Beek
+* Charles Harris
+* Melissa Weber Mendonça
+* Ross Barnowski
+* Sebastian Berg
+* Tirth Patel
+* Matthieu Darbois
+
+Pull requests merged
+====================
+
+A total of 10 pull requests were merged for this release.
+
+* `#21048 <https://github.com/numpy/numpy/pull/21048>`__: MAINT: Use "3.10" instead of "3.10-dev" on travis.
+* `#21106 <https://github.com/numpy/numpy/pull/21106>`__: TYP,MAINT: Explicitly allow sequences of array-likes in ``np.concatenate``
+* `#21137 <https://github.com/numpy/numpy/pull/21137>`__: BLD,DOC: skip broken ipython 8.1.0
+* `#21138 <https://github.com/numpy/numpy/pull/21138>`__: BUG, ENH: np._from_dlpack: export correct device information
+* `#21139 <https://github.com/numpy/numpy/pull/21139>`__: BUG: Fix numba DUFuncs added loops getting picked up
+* `#21140 <https://github.com/numpy/numpy/pull/21140>`__: BUG: Fix unpickling an empty ndarray with a none-zero dimension...
+* `#21141 <https://github.com/numpy/numpy/pull/21141>`__: BUG: use ThreadPoolExecutor instead of ThreadPool
+* `#21142 <https://github.com/numpy/numpy/pull/21142>`__: API: Disallow strings in logical ufuncs
+* `#21143 <https://github.com/numpy/numpy/pull/21143>`__: MAINT, DOC: Fix SciPy intersphinx link
+* `#21148 <https://github.com/numpy/numpy/pull/21148>`__: BUG,ENH: np._from_dlpack: export arrays with any strided size-1...
diff --git a/doc/source/release/1.22.0-notes.rst b/doc/source/release/1.22.0-notes.rst
index 991b41196..4b93e872e 100644
--- a/doc/source/release/1.22.0-notes.rst
+++ b/doc/source/release/1.22.0-notes.rst
@@ -29,8 +29,10 @@ used functions, improvements to F2PY, and better documentation.
The Python versions supported in this release are 3.8-3.10, Python 3.7 has been
dropped. Note that 32 bit wheels are only provided for Python 3.8 and 3.9 on
Windows, all other wheels are 64 bits on account of Ubuntu, Fedora, and other
-Linux distributions dropping 32 bit support. All 64 bit wheels are also linked
-with 64 bit integer OpenBLAS, which should fix the occasional problems
+Linux distributions dropping 32 bit support. The Mac wheels are now based on
+OS X 10.14 rather than 10.6 that was used in previous NumPy release cycles.
+10.14 is the oldest release supported by Apple. All 64 bit wheels are also
+linked with 64 bit integer OpenBLAS, which should fix the occasional problems
encountered by folks using truly huge arrays.
diff --git a/doc/source/release/1.22.3-notes.rst b/doc/source/release/1.22.3-notes.rst
index 74b070488..2b7508bbd 100644
--- a/doc/source/release/1.22.3-notes.rst
+++ b/doc/source/release/1.22.3-notes.rst
@@ -5,9 +5,44 @@ NumPy 1.22.3 Release Notes
==========================
The NumPy 1.22.3 is maintenance release that fixes bugs discovered after the
-1.22.2 release. Notable fixes are:
+1.22.2 release. The most noticeable fixes may be those for DLPack. One that may
+cause some problems is disallowing strings as inputs to logical ufuncs. It is
+still undecided how strings should be treated in those functions and it was
+thought best to simply disallow them until a decision was reached. That should
+not cause problems with older code.
+The Python versions supported for this release are 3.8-3.10. Note that the Mac
+wheels are now based on OS X 10.14 rather than 10.6 that was used in previous
+NumPy release cycles. 10.14 is the oldest release supported by Apple.
-The Python versions supported for this release are 3.8-3.10.
+Contributors
+============
+A total of 9 people contributed to this release. People with a "+" by their
+names contributed a patch for the first time.
+* @GalaxySnail +
+* Alexandre de Siqueira
+* Bas van Beek
+* Charles Harris
+* Melissa Weber Mendonça
+* Ross Barnowski
+* Sebastian Berg
+* Tirth Patel
+* Matthieu Darbois
+
+Pull requests merged
+====================
+
+A total of 10 pull requests were merged for this release.
+
+* `#21048 <https://github.com/numpy/numpy/pull/21048>`__: MAINT: Use "3.10" instead of "3.10-dev" on travis.
+* `#21106 <https://github.com/numpy/numpy/pull/21106>`__: TYP,MAINT: Explicitly allow sequences of array-likes in ``np.concatenate``
+* `#21137 <https://github.com/numpy/numpy/pull/21137>`__: BLD,DOC: skip broken ipython 8.1.0
+* `#21138 <https://github.com/numpy/numpy/pull/21138>`__: BUG, ENH: np._from_dlpack: export correct device information
+* `#21139 <https://github.com/numpy/numpy/pull/21139>`__: BUG: Fix numba DUFuncs added loops getting picked up
+* `#21140 <https://github.com/numpy/numpy/pull/21140>`__: BUG: Fix unpickling an empty ndarray with a none-zero dimension...
+* `#21141 <https://github.com/numpy/numpy/pull/21141>`__: BUG: use ThreadPoolExecutor instead of ThreadPool
+* `#21142 <https://github.com/numpy/numpy/pull/21142>`__: API: Disallow strings in logical ufuncs
+* `#21143 <https://github.com/numpy/numpy/pull/21143>`__: MAINT, DOC: Fix SciPy intersphinx link
+* `#21148 <https://github.com/numpy/numpy/pull/21148>`__: BUG,ENH: np._from_dlpack: export arrays with any strided size-1...