File tree Expand file tree Collapse file tree 3 files changed +55
-3
lines changed Expand file tree Collapse file tree 3 files changed +55
-3
lines changed Original file line number Diff line number Diff line change
1
+ ==========================
2
+ NumPy 1.16.4 Release Notes
3
+ ==========================
4
+
5
+ The NumPy 1.16.4 release fixes bugs reported against the 1.16.3 release, and
6
+ also backports several enhancements from master that seem appropriate for a
7
+ release series that is the last to support Python 2.7. The wheels on PyPI are
8
+ linked with OpenBLAS v0.3.4+, which should fix the known threading issues
9
+ found in previous OpenBLAS versions.
10
+
11
+ Downstream developers building this release should use Cython >= 0.29.2 and,
12
+ if using OpenBLAS, OpenBLAS > v0.3.4.
13
+
14
+
15
+ Highlights
16
+ ==========
17
+
18
+
19
+ New functions
20
+ =============
21
+
22
+
23
+ New deprecations
24
+ ================
25
+
26
+
27
+ Expired deprecations
28
+ ====================
29
+
30
+
31
+ Future changes
32
+ ==============
33
+
34
+
35
+ Compatibility notes
36
+ ===================
37
+
38
+
39
+ C API changes
40
+ =============
41
+
42
+
43
+ New Features
44
+ ============
45
+
46
+
47
+ Improvements
48
+ ============
49
+
50
+
51
+ Changes
52
+ =======
Original file line number Diff line number Diff line change 42
42
#-----------------------------------
43
43
44
44
# Path to the release notes
45
- RELEASE_NOTES = 'doc/release/1.16.3 -notes.rst'
45
+ RELEASE_NOTES = 'doc/release/1.16.4 -notes.rst'
46
46
47
47
48
48
#-------------------------------------------------------
Original file line number Diff line number Diff line change 61
61
62
62
MAJOR = 1
63
63
MINOR = 16
64
- MICRO = 3
65
- ISRELEASED = True
64
+ MICRO = 4
65
+ ISRELEASED = False
66
66
VERSION = '%d.%d.%d' % (MAJOR , MINOR , MICRO )
67
67
68
68
You can’t perform that action at this time.
0 commit comments