diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-05-20 13:42:17 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2021-05-20 14:57:28 -0600 |
commit | 4c6858a047fbf0df20db4a00e724c03400c26bfd (patch) | |
tree | ccc1cd53c8524fa631591e6a1daf046263d1d8eb /doc/source | |
parent | 4732c242e2d9ef649f1aa71b261e51068a9b41a9 (diff) | |
download | numpy-4c6858a047fbf0df20db4a00e724c03400c26bfd.tar.gz |
DOC: Forward port missing 1.18.5 release note.
Closes #19054.
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/release.rst | 1 | ||||
-rw-r--r-- | doc/source/release/1.18.5-notes.rst | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/doc/source/release.rst b/doc/source/release.rst index b9cdfb9c8..6d208d395 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -16,6 +16,7 @@ Release Notes 1.19.2 <release/1.19.2-notes> 1.19.1 <release/1.19.1-notes> 1.19.0 <release/1.19.0-notes> + 1.18.5 <release/1.18.5-notes> 1.18.4 <release/1.18.4-notes> 1.18.3 <release/1.18.3-notes> 1.18.2 <release/1.18.2-notes> diff --git a/doc/source/release/1.18.5-notes.rst b/doc/source/release/1.18.5-notes.rst new file mode 100644 index 000000000..e704c001a --- /dev/null +++ b/doc/source/release/1.18.5-notes.rst @@ -0,0 +1,31 @@ +.. currentmodule:: numpy + +========================== +NumPy 1.18.5 Release Notes +========================== + +This is a short release to allow pickle ``protocol=5`` to be used in +Python3.5. It is motivated by the recent backport of pickle5 to Python3.5. + +The Python versions supported in this release are 3.5-3.8. Downstream +developers should use Cython >= 0.29.15 for Python 3.8 support and +OpenBLAS >= 3.7 to avoid errors on the Skylake architecture. + +Contributors +============ + +A total of 3 people contributed to this release. People with a "+" by their +names contributed a patch for the first time. + +* Charles Harris +* Matti Picus +* Siyuan Zhuang + + +Pull requests merged +==================== + +A total of 2 pull requests were merged for this release. + +* `#16439 <https://github.com/numpy/numpy/pull/16439>`__: ENH: enable pickle protocol 5 support for python3.5 +* `#16441 <https://github.com/numpy/numpy/pull/16441>`__: BUG: relpath fails for different drives on windows + |