8000 REL: prepare 1.16.x for further development · numpy/numpy@0f6677c · GitHub
[go: up one dir, main page]

Skip to content

Commit 0f6677c

Browse files
committed
REL: prepare 1.16.x for further development
1 parent 08b17ae commit 0f6677c

File tree

3 files changed

+55
-3
lines changed

3 files changed

+55
-3
lines changed

doc/release/1.16.4-notes.rst

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
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+
=======

pavement.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
#-----------------------------------
4343

4444
# 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'
4646

4747

4848
#-------------------------------------------------------

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161

6262
MAJOR = 1
6363
MINOR = 16
64-
MICRO = 3
65-
ISRELEASED = True
64+
MICRO = 4
65+
ISRELEASED = False
6666
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
6767

6868

0 commit comments

Comments
 (0)
0