diff options
| author | Ralf Gommers <ralf.gommers@gmail.com> | 2022-07-09 15:38:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-09 15:38:55 +0200 |
| commit | 934e41387fd3f34b2ab2f23a1b951d78b8b01788 (patch) | |
| tree | 27a51031294458cf015745b8b51b1048c9590d29 | |
| parent | b89a1d219d493d62f0253b8f276b84cb61ed044a (diff) | |
| parent | 670a9ecbcf8597a99c31db2f6a7e5160bff26a13 (diff) | |
| download | numpy-934e41387fd3f34b2ab2f23a1b951d78b8b01788.tar.gz | |
Merge pull request #21956 from charris/post-1.23.1-release-update
MAINT: Update main after 1.23.1 release.
| -rw-r--r-- | .mailmap | 1 | ||||
| -rw-r--r-- | doc/changelog/1.23.1-changelog.rst | 28 | ||||
| -rw-r--r-- | doc/source/release.rst | 1 | ||||
| -rw-r--r-- | doc/source/release/1.23.1-notes.rst | 45 |
4 files changed, 75 insertions, 0 deletions
@@ -465,6 +465,7 @@ Sista Seetaram <hanumaseetaram@gmail.com> Sista Seetaram <hanumaseetaram@gmail.com> <65669128+sistaseetaram@users.noreply.github.com> Søren Rasmussen <soren.rasmussen@alexandra.dk> <47032123+sorenrasmussenai@users.noreply.github.com> Spencer Hill <spencerahill@gmail.com> <shill@atmos.ucla.edu> +Srimukh Sripada <git@srimukh.com> Stefan Behnel <stefan_ml@behnel.de> Stefan van der Walt <stefanv@berkeley.edu> <sjvdwalt@gmail.com> Stefan van der Walt <stefanv@berkeley.edu> <stefan@sun.ac.za> diff --git a/doc/changelog/1.23.1-changelog.rst b/doc/changelog/1.23.1-changelog.rst new file mode 100644 index 000000000..9618bae72 --- /dev/null +++ b/doc/changelog/1.23.1-changelog.rst @@ -0,0 +1,28 @@ + +Contributors +============ + +A total of 7 people contributed to this release. People with a "+" by their +names contributed a patch for the first time. + +* Charles Harris +* Matthias Koeppe + +* Pranab Das + +* Rohit Goswami +* Sebastian Berg +* Serge Guelton +* Srimukh Sripada + + +Pull requests merged +==================== + +A total of 8 pull requests were merged for this release. + +* `#21866 <https://github.com/numpy/numpy/pull/21866>`__: BUG: Fix discovered MachAr (still used within valgrind) +* `#21867 <https://github.com/numpy/numpy/pull/21867>`__: BUG: Handle NaNs correctly for float16 during sorting +* `#21868 <https://github.com/numpy/numpy/pull/21868>`__: BUG: Use ``keepdims`` during normalization in ``np.average`` and... +* `#21869 <https://github.com/numpy/numpy/pull/21869>`__: DOC: mention changes to ``max_rows`` behaviour in ``np.loadtxt`` +* `#21870 <https://github.com/numpy/numpy/pull/21870>`__: BUG: Reject non integer array-likes with size 1 in delete +* `#21949 <https://github.com/numpy/numpy/pull/21949>`__: BLD: Make can_link_svml return False for 32bit builds on x86_64 +* `#21951 <https://github.com/numpy/numpy/pull/21951>`__: BUG: Reorder extern "C" to only apply to function declarations... +* `#21952 <https://github.com/numpy/numpy/pull/21952>`__: BUG: Fix KeyError in crackfortran operator support diff --git a/doc/source/release.rst b/doc/source/release.rst index 84f93bb0a..d46b813a6 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.1 <release/1.23.1-notes> 1.23.0 <release/1.23.0-notes> 1.22.4 <release/1.22.4-notes> 1.22.3 <release/1.22.3-notes> diff --git a/doc/source/release/1.23.1-notes.rst b/doc/source/release/1.23.1-notes.rst new file mode 100644 index 000000000..3efc5dc6f --- /dev/null +++ b/doc/source/release/1.23.1-notes.rst @@ -0,0 +1,45 @@ +.. currentmodule:: numpy + +========================== +NumPy 1.23.1 Release Notes +========================== + +NumPy 1.23.1 is a maintenance release that fixes bugs discovered after the +1.23.0 release. Notable fixes are: + +- Fix searchsorted for float16 NaNs +- Fix compilation on Apple M1 +- Fix KeyError in crackfortran operator support (Slycot) + +The Python version supported for this release are 3.8-3.10. + + +Contributors +============ + +A total of 7 people contributed to this release. People with a "+" by their +names contributed a patch for the first time. + +* Charles Harris +* Matthias Koeppe + +* Pranab Das + +* Rohit Goswami +* Sebastian Berg +* Serge Guelton +* Srimukh Sripada + + + +Pull requests merged +==================== + +A total of 8 pull requests were merged for this release. + +* `#21866 <https://github.com/numpy/numpy/pull/21866>`__: BUG: Fix discovered MachAr (still used within valgrind) +* `#21867 <https://github.com/numpy/numpy/pull/21867>`__: BUG: Handle NaNs correctly for float16 during sorting +* `#21868 <https://github.com/numpy/numpy/pull/21868>`__: BUG: Use ``keepdims`` during normalization in ``np.average`` and... +* `#21869 <https://github.com/numpy/numpy/pull/21869>`__: DOC: mention changes to ``max_rows`` behaviour in ``np.loadtxt`` +* `#21870 <https://github.com/numpy/numpy/pull/21870>`__: BUG: Reject non integer array-likes with size 1 in delete +* `#21949 <https://github.com/numpy/numpy/pull/21949>`__: BLD: Make can_link_svml return False for 32bit builds on x86_64 +* `#21951 <https://github.com/numpy/numpy/pull/21951>`__: BUG: Reorder extern "C" to only apply to function declarations... +* `#21952 <https://github.com/numpy/numpy/pull/21952>`__: BUG: Fix KeyError in crackfortran operator support + |
