diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2016-11-05 18:54:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-05 18:54:41 -0400 |
commit | 241e6a698e35060ab2980bc18976e7aef9bec912 (patch) | |
tree | 0a0aec714668028d2bdaf19d63671a22211a6c0c | |
parent | 6cf3406df605f962632f6dc292a67cfde91ce9bc (diff) | |
parent | b33a5ee781bb4a775e5ccef1fdf88b61339becba (diff) | |
download | numpy-241e6a698e35060ab2980bc18976e7aef9bec912.tar.gz |
Merge pull request #8241 from charris/prepare-1.13
MAINT: Prepare for 1.13.0 after 1.12.x branch
-rw-r--r-- | doc/release/1.13.0-notes.rst | 49 | ||||
-rw-r--r-- | doc/source/release.rst | 1 | ||||
-rw-r--r-- | pavement.py | 13 | ||||
-rwxr-xr-x | setup.py | 3 |
4 files changed, 54 insertions, 12 deletions
diff --git a/doc/release/1.13.0-notes.rst b/doc/release/1.13.0-notes.rst new file mode 100644 index 000000000..a7e4fe1a8 --- /dev/null +++ b/doc/release/1.13.0-notes.rst @@ -0,0 +1,49 @@ +NumPy 1.13.0 Release Notes +************************** + +This release supports Python 2.7 and 3.4 - 3.6. + +Highlights +========== + + +Dropped Support +=============== + + +Build System Changes +==================== + + +Future Changes +============== + + +Compatibility notes +=================== + +DeprecationWarning to error +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +FutureWarning to changed behavior +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +C API +~~~~~ + + +New Features +============ + + +Improvements +============ + + +Changes +======= + + +Deprecations +============ + diff --git a/doc/source/release.rst b/doc/source/release.rst index 1de3faaa4..48370eacd 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -2,6 +2,7 @@ Release Notes ************* +.. include:: ../release/1.13.0-notes.rst .. include:: ../release/1.12.0-notes.rst .. include:: ../release/1.11.2-notes.rst .. include:: ../release/1.11.1-notes.rst diff --git a/pavement.py b/pavement.py index 0940d7159..a6072a997 100644 --- a/pavement.py +++ b/pavement.py @@ -99,10 +99,10 @@ finally: #----------------------------------- # Source of the release notes -RELEASE_NOTES = 'doc/release/1.12.0-notes.rst' +RELEASE_NOTES = 'doc/release/1.13.0-notes.rst' # Start/end of the log (from git) -LOG_START = 'maintenance/1.11.x' +LOG_START = 'maintenance/1.12.x' LOG_END = 'master' @@ -150,10 +150,7 @@ SITECFG = {"sse2" : SSE2_CFG, "sse3" : SSE3_CFG, "nosse" : NOSSE_CFG} if sys.platform =="darwin": WINDOWS_PYTHON = { "3.4": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python34/python.exe"], - "3.3": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python33/python.exe"], - "3.2": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python32/python.exe"], "2.7": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python27/python.exe"], - "2.6": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python26/python.exe"], } WINDOWS_ENV = os.environ WINDOWS_ENV["DYLD_FALLBACK_LIBRARY_PATH"] = "/usr/X11/lib:/usr/lib" @@ -161,10 +158,7 @@ if sys.platform =="darwin": elif sys.platform == "win32": WINDOWS_PYTHON = { "3.4": ["C:\Python34\python.exe"], - "3.3": ["C:\Python33\python.exe"], - "3.2": ["C:\Python32\python.exe"], "2.7": ["C:\Python27\python.exe"], - "2.6": ["C:\Python26\python.exe"], } # XXX: find out which env variable is necessary to avoid the pb with python # 2.6 and random module when importing tempfile @@ -173,10 +167,7 @@ elif sys.platform == "win32": else: WINDOWS_PYTHON = { "3.4": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python34/python.exe"], - "3.3": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python33/python.exe"], - "3.2": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python32/python.exe"], "2.7": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python27/python.exe"], - "2.6": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python26/python.exe"], } WINDOWS_ENV = os.environ MAKENSIS = ["wine", "makensis"] @@ -51,6 +51,7 @@ Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 Programming Language :: Python :: 3.4 Programming Language :: Python :: 3.5 +Programming Language :: Python :: 3.6 Programming Language :: Python :: Implementation :: CPython Topic :: Software Development Topic :: Scientific/Engineering @@ -61,7 +62,7 @@ Operating System :: MacOS """ MAJOR = 1 -MINOR = 12 +MINOR = 13 MICRO = 0 ISRELEASED = False VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) |