|
| 1 | +.. currentmodule:: numpy |
| 2 | + |
1 | 3 | ==========================
|
2 | 4 | NumPy 1.17.3 Release Notes
|
3 | 5 | ==========================
|
4 | 6 |
|
| 7 | +This release contains fixes for bugs reported against NumPy 1.17.2 along with a |
| 8 | +some documentation improvements. The Python versions supported in this release |
| 9 | +are 3.5-3.8. |
5 | 10 |
|
6 |
| -Highlights |
7 |
| -========== |
8 |
| - |
9 |
| - |
10 |
| -New functions |
11 |
| -============= |
12 |
| - |
13 |
| - |
14 |
| -Deprecations |
15 |
| -============ |
16 |
| - |
| 11 | +Downstream developers should use Cython >= 0.29.13 for Python 3.8 support and |
| 12 | +OpenBLAS >= 3.7 to avoid errors on the Skylake architecture. |
17 | 13 |
|
18 |
| -Future Changes |
19 |
| -============== |
20 | 14 |
|
| 15 | +Highlights |
| 16 | +========== |
21 | 17 |
|
22 |
| -Expired deprecations |
23 |
| -==================== |
| 18 | +- Wheels for Python 3.8 |
| 19 | +- Boolean ``matmul`` fixed to use booleans instead of integers. |
24 | 20 |
|
25 | 21 |
|
26 | 22 | Compatibility notes
|
27 | 23 | ===================
|
28 | 24 |
|
| 25 | +- The seldom used ``PyArray_DescrCheck`` macro has been changed/fixed. |
29 | 26 |
|
30 |
| -C API changes |
31 |
| -============= |
32 | 27 |
|
33 |
| - |
34 |
| -New Features |
| 28 | +Contributors |
35 | 29 | ============
|
36 | 30 |
|
| 31 | +A total of 7 people contributed to this release. People with a "+" by their |
| 32 | +names contributed a patch for the first time. |
37 | 33 |
|
38 |
| -Improvements |
39 |
| -============ |
| 34 | +* Allan Haldane |
| 35 | +* Charles Harris |
| 36 | +* Kevin Sheppard |
| 37 | +* Matti Picus |
| 38 | +* Ralf Gommers |
| 39 | +* Sebastian Berg |
| 40 | +* Warren Weckesser |
40 | 41 |
|
41 | 42 |
|
42 |
| -Changes |
43 |
| -======= |
| 43 | +Pull requests merged |
| 44 | +==================== |
| 45 | + |
| 46 | +A total of 12 pull requests were merged for this release. |
| 47 | + |
| 48 | +* `#14456 <https://github.com/numpy/numpy/pull/14456>`__: MAINT: clean up pocketfft modules inside numpy.fft namespace. |
| 49 | +* `#14463 <https://github.com/numpy/numpy/pull/14463>`__: BUG: random.hypergeometic assumes npy_long is npy_int64, hung... |
| 50 | +* `#14502 <https://github.com/numpy/numpy/pull/14502>`__: BUG: random: Revert gh-14458 and refix gh-14557. |
| 51 | +* `#14504 <https://github.com/numpy/numpy/pull/14504>`__: BUG: add a specialized loop for boolean matmul. |
| 52 | +* `#14506 <https://github.com/numpy/numpy/pull/14506>`__: MAINT: Update pytest version for Python 3.8 |
| 53 | +* `#14512 <https://github.com/numpy/numpy/pull/14512>`__: DOC: random: fix doc linking, was referencing private submodules. |
| 54 | +* `#14513 <https://github.com/numpy/numpy/pull/14513>`__: BUG,MAINT: Some fixes and minor cleanup based on clang analysis |
| 55 | +* `#14515 <https://github.com/numpy/numpy/pull/14515>`__: BUG: Fix randint when range is 2**32 |
| 56 | +* `#14519 <https://github.com/numpy/numpy/pull/14519>`__: MAINT: remove the entropy c-extension module |
| 57 | +* `#14563 <https://github.com/numpy/numpy/pull/14563>`__: DOC: remove note about Pocketfft license file (non-existing here). |
| 58 | +* `#14578 <https://github.com/numpy/numpy/pull/14578>`__: BUG: random: Create a legacy implementation of random.binomial. |
| 59 | +* `#14687 <https://github.com/numpy/numpy/pull/14687>`__: BUG: properly define PyArray_DescrCheck |
0 commit comments