diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2019-11-10 19:40:15 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2019-11-10 19:44:20 -0700 |
commit | d4a182df51a94b8c975bb0109f7af951fee86f15 (patch) | |
tree | 92d18b7fa0101b89aebb49c149cf21b9fb8bef23 | |
parent | dcc1fc2f055253703d3883ad186c26bcf6b9b276 (diff) | |
download | numpy-d4a182df51a94b8c975bb0109f7af951fee86f15.tar.gz |
REL: Update master after 1.17.4 release.
- Create 1.17.4-changelog.rst
- Create 1.17.4-notes.rst
- Update release.rst
-rw-r--r-- | doc/changelog/1.17.4-changelog.rst | 26 | ||||
-rw-r--r-- | doc/source/release.rst | 1 | ||||
-rw-r--r-- | doc/source/release/1.17.4-notes.rst | 49 |
3 files changed, 76 insertions, 0 deletions
diff --git a/doc/changelog/1.17.4-changelog.rst b/doc/changelog/1.17.4-changelog.rst new file mode 100644 index 000000000..96d9f3e9e --- /dev/null +++ b/doc/changelog/1.17.4-changelog.rst @@ -0,0 +1,26 @@ + +Contributors +============ + +A total of 5 people contributed to this release. People with a "+" by their +names contributed a patch for the first time. + +* Charles Harris +* Chris Burr + +* Matti Picus +* Qiming Sun + +* Warren Weckesser + +Pull requests merged +==================== + +A total of 8 pull requests were merged for this release. + +* `#14758 <https://github.com/numpy/numpy/pull/14758>`__: BLD: declare support for python 3.8 +* `#14781 <https://github.com/numpy/numpy/pull/14781>`__: BUG: random: biased samples from integers() with 8 or 16 bit... +* `#14851 <https://github.com/numpy/numpy/pull/14851>`__: BUG: Fix _ctypes class circular reference. (#13808) +* `#14852 <https://github.com/numpy/numpy/pull/14852>`__: BLD: add 'apt update' to shippable +* `#14855 <https://github.com/numpy/numpy/pull/14855>`__: BUG: Fix `np.einsum` errors on Power9 Linux and z/Linux +* `#14857 <https://github.com/numpy/numpy/pull/14857>`__: BUG: lib: Fix histogram problem with signed integer arrays. +* `#14858 <https://github.com/numpy/numpy/pull/14858>`__: BLD: Prevent -flto from optimising long double representation... +* `#14866 <https://github.com/numpy/numpy/pull/14866>`__: MAINT: move buffer.h -> npy_buffer.h to avoid conflicts diff --git a/doc/source/release.rst b/doc/source/release.rst index 3bfe81243..0343275a5 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -6,6 +6,7 @@ Release Notes :maxdepth: 3 1.18.0 <release/1.18.0-notes> + 1.17.4 <release/1.17.4-notes> 1.17.3 <release/1.17.3-notes> 1.17.2 <release/1.17.2-notes> 1.17.1 <release/1.17.1-notes> diff --git a/doc/source/release/1.17.4-notes.rst b/doc/source/release/1.17.4-notes.rst new file mode 100644 index 000000000..47f4725f9 --- /dev/null +++ b/doc/source/release/1.17.4-notes.rst @@ -0,0 +1,49 @@ +.. currentmodule:: numpy + +========================== +NumPy 1.17.4 Release Notes +========================== + +This release contains fixes for bugs reported against NumPy 1.17.3 along with +some build improvements. The Python versions supported in this release +are 3.5-3.8. + +Downstream developers should use Cython >= 0.29.13 for Python 3.8 support and +OpenBLAS >= 3.7 to avoid errors on the Skylake architecture. + + +Highlights +========== + +- Fixed `random.random_integers` biased generation of 8 and 16 bit integers. +- Fixed `np.einsum` regression on Power9 and z/Linux. +- Fixed histogram problem with signed integer arrays. + + +Contributors +============ + +A total of 5 people contributed to this release. People with a "+" by their +names contributed a patch for the first time. + +* Charles Harris +* Chris Burr + +* Matti Picus +* Qiming Sun + +* Warren Weckesser + + +Pull requests merged +==================== + +A total of 8 pull requests were merged for this release. + +* `#14758 <https://github.com/numpy/numpy/pull/14758>`__: BLD: declare support for python 3.8 +* `#14781 <https://github.com/numpy/numpy/pull/14781>`__: BUG: random: biased samples from integers() with 8 or 16 bit... +* `#14851 <https://github.com/numpy/numpy/pull/14851>`__: BUG: Fix _ctypes class circular reference. (#13808) +* `#14852 <https://github.com/numpy/numpy/pull/14852>`__: BLD: add 'apt update' to shippable +* `#14855 <https://github.com/numpy/numpy/pull/14855>`__: BUG: Fix `np.einsum` errors on Power9 Linux and z/Linux +* `#14857 <https://github.com/numpy/numpy/pull/14857>`__: BUG: lib: Fix histogram problem with signed integer arrays. +* `#14858 <https://github.com/numpy/numpy/pull/14858>`__: BLD: Prevent -flto from optimising long double representation... +* `#14866 <https://github.com/numpy/numpy/pull/14866>`__: MAINT: move buffer.h -> npy_buffer.h to avoid conflicts + |