Skip to content

Commit 11a9b71

Browse files
committed
REL: Update master branch after 1.12.x branch has been made.
* Drop testing of Python 2.6, 3.2, and 3.3 * Create 1.12.0-notes.rst and add to source/documentation. * Update pavement.py to use 1.10.x as LOG_START * Update version numpy in setup.py
1 parent 58089f3 commit 11a9b71

File tree

5 files changed

+70
-6
lines changed

5 files changed

+70
-6
lines changed

.travis.yml

-3
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,7 @@ env:
3131
ahp7Qnm0rWRmA0z9SomuRUQOJQ6s684vU="
3232

3333
python:
34-
- 2.6
3534
- 2.7
36-
- 3.2
37-
- 3.3
3835
- 3.4
3936
- 3.5
4037
matrix:

doc/release/1.12.0-notes.rst

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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+

doc/source/release.rst

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Release Notes
33
*************
44

5+
.. include:: ../release/1.12.0-notes.rst
56
.. include:: ../release/1.11.0-notes.rst
67
.. include:: ../release/1.10.4-notes.rst
78
.. include:: ../release/1.10.3-notes.rst

pavement.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,10 @@
9999
#-----------------------------------
100100

101101
# 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'
103103

104104
# Start/end of the log (from git)
105-
LOG_START = 'v1.10.0'
105+
LOG_START = 'maintenance/1.11.x'
106106
LOG_END = 'master'
107107

108108

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"""
5858

5959
MAJOR = 1
60-
MINOR = 11
60+
MINOR = 12
6161
MICRO = 0
6262
ISRELEASED = False
6363
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)

0 commit comments

Comments
 (0)