Skip to content

Commit

Permalink
Merge pull request numpy#8241 from charris/prepare-1.13
Browse files Browse the repository at this point in the history
MAINT: Prepare for 1.13.0 after 1.12.x branch
  • Loading branch information
charris authored Nov 5, 2016
2 parents 6cf3406 + b33a5ee commit 241e6a6
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 12 deletions.
49 changes: 49 additions & 0 deletions doc/release/1.13.0-notes.rst
Original file line number Diff line number Diff line change
@@ -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
============

1 change: 1 addition & 0 deletions doc/source/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
13 changes: 2 additions & 11 deletions pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@
#-----------------------------------

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


Expand Down Expand Up @@ -150,21 +150,15 @@
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"
MAKENSIS = ["wine", "makensis"]
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
Expand All @@ -173,10 +167,7 @@
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"]
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,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
Expand All @@ -61,7 +62,7 @@
"""

MAJOR = 1
MINOR = 12
MINOR = 13
MICRO = 0
ISRELEASED = False
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
Expand Down

0 comments on commit 241e6a6

Please sign in to comment.