File tree 5 files changed +70
-6
lines changed
5 files changed +70
-6
lines changed Original file line number Diff line number Diff line change 31
31
ahp7Qnm0rWRmA0z9SomuRUQOJQ6s684vU="
32
32
33
33
python :
34
- - 2.6
35
34
- 2.7
36
- - 3.2
37
- - 3.3
38
35
- 3.4
39
36
- 3.5
40
37
matrix :
Original file line number Diff line number Diff line change
1
+ NumPy 1.12.0 Release Notes
2
+ **************************
3
+
4
+ This release supports Python 2.7 and 3.4 - 3.5.
5
+
6
+ Highlights
7
+ ==========
8
+
9
+
10
+ Dropped Support
11
+ ===============
12
+
13
+ * Support for Python 2.6, 3.2, and 3.3 has been dropped.
14
+
15
+
16
+ Future Changes
17
+ ==============
18
+
19
+ * In 1.13 NAT will always compare False except for ``NAT != NAT ``,
20
+ which will be True. In short, NAT will behave like NaN
21
+
22
+
23
+ Compatibility notes
24
+ ===================
25
+
26
+ Relaxed stride checking is the default
27
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
28
+
29
+ This will have some impact on code that assumed that ``F_CONTIGUOUS `` and
30
+ ``C_CONTIGUOUS `` were mutually exclusive and could be set to determine the
31
+ default order for arrays that are now both.
32
+
33
+ ``MaskedArray `` takes view of data **and ** mask when slicing
34
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
35
+
36
+ XXX
37
+
38
+
39
+ DeprecationWarning to error
40
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~
41
+
42
+
43
+ FutureWarning to changed behavior
44
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
45
+
46
+
47
+ C API
48
+ ~~~~~
49
+
50
+
51
+ New Features
52
+ ============
53
+
54
+
55
+
56
+ Improvements
57
+ ============
58
+
59
+
60
+
61
+ Changes
62
+ =======
63
+
64
+ Deprecations
65
+ ============
66
+
Original file line number Diff line number Diff line change 2
2
Release Notes
3
3
*************
4
4
5
+ .. include :: ../release/1.12.0-notes.rst
5
6
.. include :: ../release/1.11.0-notes.rst
6
7
.. include :: ../release/1.10.4-notes.rst
7
8
.. include :: ../release/1.10.3-notes.rst
Original file line number Diff line number Diff line change 99
99
#-----------------------------------
100
100
101
101
# Source of the release notes
102
- RELEASE_NOTES = 'doc/release/1.11 .0-notes.rst'
102
+ RELEASE_NOTES = 'doc/release/1.12 .0-notes.rst'
103
103
104
104
# Start/end of the log (from git)
105
- LOG_START = 'v1.10.0 '
105
+ LOG_START = 'maintenance/1.11.x '
106
106
LOG_END = 'master'
107
107
108
108
Original file line number Diff line number Diff line change 57
57
"""
58
58
59
59
MAJOR = 1
60
- MINOR = 11
60
+ MINOR = 12
61
61
MICRO = 0
62
62
ISRELEASED = False
63
63
VERSION = '%d.%d.%d' % (MAJOR , MINOR , MICRO )
You can’t perform that action at this time.
0 commit comments