diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-12-20 09:39:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-20 09:39:58 -0700 |
commit | ade90f36025dfa09165ac3e106f17823f5af304f (patch) | |
tree | b54761bef188351c85698d81f9827a38131832f6 | |
parent | e3b831cd85e2f4d73b0db8e8d501828b50a96c64 (diff) | |
parent | 7940c894006e7b04f24d67149d77a75ddf7a7565 (diff) | |
download | numpy-ade90f36025dfa09165ac3e106f17823f5af304f.tar.gz |
Merge pull request #20628 from charris/post-1.21.5-release-update
REL: Update main after 1.21.5 release.
-rw-r--r-- | doc/changelog/1.21.5-changelog.rst | 31 | ||||
-rw-r--r-- | doc/source/release.rst | 1 | ||||
-rw-r--r-- | doc/source/release/1.21.5-notes.rst | 42 |
3 files changed, 74 insertions, 0 deletions
diff --git a/doc/changelog/1.21.5-changelog.rst b/doc/changelog/1.21.5-changelog.rst new file mode 100644 index 000000000..acd3599d4 --- /dev/null +++ b/doc/changelog/1.21.5-changelog.rst @@ -0,0 +1,31 @@ + +Contributors +============ + +A total of 7 people contributed to this release. People with a "+" by their +names contributed a patch for the first time. + +* Bas van Beek +* Charles Harris +* Matti Picus +* Rohit Goswami + +* Ross Barnowski +* Sayed Adel +* Sebastian Berg + +Pull requests merged +==================== + +A total of 11 pull requests were merged for this release. + +* `#20357 <https://github.com/numpy/numpy/pull/20357>`__: MAINT: Do not forward `__(deep)copy__` calls of `_GenericAlias`... +* `#20462 <https://github.com/numpy/numpy/pull/20462>`__: BUG: Fix float16 einsum fastpaths using wrong tempvar +* `#20463 <https://github.com/numpy/numpy/pull/20463>`__: BUG, DIST: Print os error message when the executable not exist +* `#20464 <https://github.com/numpy/numpy/pull/20464>`__: BLD: Verify the ability to compile C++ sources before initiating... +* `#20465 <https://github.com/numpy/numpy/pull/20465>`__: BUG: Force ``npymath` ` to respect ``npy_longdouble`` +* `#20466 <https://github.com/numpy/numpy/pull/20466>`__: BUG: Fix failure to create aligned, empty structured dtype +* `#20467 <https://github.com/numpy/numpy/pull/20467>`__: ENH: provide a convenience function to replace npy_load_module +* `#20495 <https://github.com/numpy/numpy/pull/20495>`__: MAINT: update wheel to version that supports python3.10 +* `#20497 <https://github.com/numpy/numpy/pull/20497>`__: BUG: Clear errors correctly in F2PY conversions +* `#20613 <https://github.com/numpy/numpy/pull/20613>`__: DEV: add a warningfilter to fix pytest workflow. +* `#20618 <https://github.com/numpy/numpy/pull/20618>`__: MAINT: Help boost::python libraries at least not crash diff --git a/doc/source/release.rst b/doc/source/release.rst index 9504c6e97..eb6437cf0 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -7,6 +7,7 @@ Release notes 1.23.0 <release/1.23.0-notes> 1.22.0 <release/1.22.0-notes> + 1.21.5 <release/1.21.5-notes> 1.21.4 <release/1.21.4-notes> 1.21.3 <release/1.21.3-notes> 1.21.2 <release/1.21.2-notes> diff --git a/doc/source/release/1.21.5-notes.rst b/doc/source/release/1.21.5-notes.rst new file mode 100644 index 000000000..c69d26771 --- /dev/null +++ b/doc/source/release/1.21.5-notes.rst @@ -0,0 +1,42 @@ +.. currentmodule:: numpy + +========================== +NumPy 1.21.5 Release Notes +========================== + +NumPy 1.21.5 is a maintenance release that fixes a few bugs discovered after +the 1.21.4 release and does some maintenance to extend the 1.21.x lifetime. +The Python versions supported in this release are 3.7-3.10. If you want to +compile your own version using gcc-11, you will need to use gcc-11.2+ to avoid +problems. + +Contributors +============ + +A total of 7 people contributed to this release. People with a "+" by their +names contributed a patch for the first time. + +* Bas van Beek +* Charles Harris +* Matti Picus +* Rohit Goswami +* Ross Barnowski +* Sayed Adel +* Sebastian Berg + +Pull requests merged +==================== + +A total of 11 pull requests were merged for this release. + +* `#20357 <https://github.com/numpy/numpy/pull/20357>`__: MAINT: Do not forward ``__(deep)copy__`` calls of ``_GenericAlias``... +* `#20462 <https://github.com/numpy/numpy/pull/20462>`__: BUG: Fix float16 einsum fastpaths using wrong tempvar +* `#20463 <https://github.com/numpy/numpy/pull/20463>`__: BUG, DIST: Print os error message when the executable not exist +* `#20464 <https://github.com/numpy/numpy/pull/20464>`__: BLD: Verify the ability to compile C++ sources before initiating... +* `#20465 <https://github.com/numpy/numpy/pull/20465>`__: BUG: Force ``npymath` ` to respect ``npy_longdouble`` +* `#20466 <https://github.com/numpy/numpy/pull/20466>`__: BUG: Fix failure to create aligned, empty structured dtype +* `#20467 <https://github.com/numpy/numpy/pull/20467>`__: ENH: provide a convenience function to replace npy_load_module +* `#20495 <https://github.com/numpy/numpy/pull/20495>`__: MAINT: update wheel to version that supports python3.10 +* `#20497 <https://github.com/numpy/numpy/pull/20497>`__: BUG: Clear errors correctly in F2PY conversions +* `#20613 <https://github.com/numpy/numpy/pull/20613>`__: DEV: add a warningfilter to fix pytest workflow. +* `#20618 <https://github.com/numpy/numpy/pull/20618>`__: MAINT: Help boost::python libraries at least not crash |