summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2019-12-29 11:43:21 -0700
committerCharles Harris <charlesr.harris@gmail.com>2019-12-29 11:43:21 -0700
commit3dec7099ce38cb189880f6f69df318f35ff9a5ea (patch)
tree1aed87d28f4a8e05388a2cc5d22aa83f476e3512
parent56ebda27b3122f7ac7b4dc5e7afac60e34e7baa1 (diff)
downloadnumpy-1.16.6.tar.gz
REL: NumPy 1.16.6 release.v1.16.6
-rw-r--r--doc/release/1.16.6-notes.rst4
-rwxr-xr-xsetup.py2
2 files changed, 5 insertions, 1 deletions
diff --git a/doc/release/1.16.6-notes.rst b/doc/release/1.16.6-notes.rst
index e99f55bea..cda34497c 100644
--- a/doc/release/1.16.6-notes.rst
+++ b/doc/release/1.16.6-notes.rst
@@ -8,6 +8,10 @@ release series that is the last to support Python 2.7. The wheels on PyPI are
linked with OpenBLAS v0.3.7, which should fix errors on Skylake series
cpus.
+Downstream developers building this release should use Cython >= 0.29.2 and, if
+using OpenBLAS, OpenBLAS >= v0.3.7. The supported Python versions are 2.7 and
+3.5-3.7.
+
Highlights
==========
diff --git a/setup.py b/setup.py
index bcfd9c621..954668236 100755
--- a/setup.py
+++ b/setup.py
@@ -62,7 +62,7 @@ Operating System :: MacOS
MAJOR = 1
MINOR = 16
MICRO = 6
-ISRELEASED = False
+ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)