File tree 4 files changed +55
-3
lines changed
4 files changed +55
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ Release Notes
5
5
.. toctree ::
6
6
:maxdepth: 3
7
7
8
+ 1.18.1 <release/1.18.2-notes >
8
9
1.18.1 <release/1.18.1-notes >
9
10
1.18.0 <release/1.18.0-notes >
10
11
1.17.5 <release/1.17.5-notes >
Original file line number Diff line number Diff line change
1
+ .. currentmodule :: numpy
2
+
3
+ ==========================
4
+ NumPy 1.18.2 Release Notes
5
+ ==========================
6
+
7
+ This release contains fixes for bugs reported against NumPy 1.18.1.
8
+
9
+ The Python versions supported in this release are 3.5-3.8. Downstream
10
+ developers should use Cython >= 0.29.14 for Python 3.8 support and OpenBLAS >=
11
+ 3.7 to avoid errors on the Skylake architecture.
12
+
13
+
14
+ Highlights
15
+ ==========
16
+
17
+
18
+ New functions
19
+ =============
20
+
21
+
22
+ Deprecations
23
+ ============
24
+
25
+
26
+ Future Changes
27
+ ==============
28
+
29
+
30
+ Expired deprecations
31
+ ====================
32
+
33
+
34
+ Compatibility notes
35
+ ===================
36
+
37
+
38
+ C API changes
39
+ =============
40
+
41
+
42
+ New Features
43
+ ============
44
+
45
+
46
+ Improvements
47
+ ============
48
+
49
+
50
+ Changes
51
+ =======
Original file line number Diff line number Diff line change 41
41
#-----------------------------------
42
42
43
43
# Path to the release notes
44
- RELEASE_NOTES = 'doc/source/release/1.18.1 -notes.rst'
44
+ RELEASE_NOTES = 'doc/source/release/1.18.2 -notes.rst'
45
45
46
46
47
47
#-------------------------------------------------------
Original file line number Diff line number Diff line change 58
58
59
59
MAJOR = 1
60
60
MINOR = 18
61
- MICRO = 1
62
- ISRELEASED = True
61
+ MICRO = 2
62
+ ISRELEASED = False
63
63
VERSION = '%d.%d.%d' % (MAJOR , MINOR , MICRO )
64
64
65
65
You can’t perform that action at this time.
0 commit comments