From 988bf89bf652d3df39de63e97992a5ee64b4a0ca Mon Sep 17 00:00:00 2001 From: Jordan Adler Date: Tue, 30 Oct 2018 17:15:21 -0700 Subject: [PATCH] Bump for release --- docs/whatsnew.rst | 7 ++++++- setup.py | 4 ---- src/future/__init__.py | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/docs/whatsnew.rst b/docs/whatsnew.rst index 1cde2a44..68790527 100644 --- a/docs/whatsnew.rst +++ b/docs/whatsnew.rst @@ -3,7 +3,12 @@ What's New ********** -What's new in version 0.17 (2018-10-19) +What's new in version 0.17.1 (2019-10-30) +========================================= +This release address a packaging error because of an erroneous declaration that +any built wheels are universal. + +What's new in version 0.17.0 (2018-10-19) ========================================= This is a major bug-fix release, including: diff --git a/setup.py b/setup.py index 3cad4492..d3db5371 100755 --- a/setup.py +++ b/setup.py @@ -12,10 +12,6 @@ except ImportError: from distutils.core import setup -if sys.argv[-1] == 'sdist' and sys.version_info[0] >= 3: - print('ERROR: You must build python-future with Python 2', file=sys.stderr) - sys.exit(1) - if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() diff --git a/src/future/__init__.py b/src/future/__init__.py index 211fb43b..f7a6fbeb 100644 --- a/src/future/__init__.py +++ b/src/future/__init__.py @@ -87,7 +87,7 @@ __copyright__ = 'Copyright 2013-2018 Python Charmers Pty Ltd' __ver_major__ = 0 __ver_minor__ = 17 -__ver_patch__ = 0 +__ver_patch__ = 1 __ver_sub__ = '' __version__ = "%d.%d.%d%s" % (__ver_major__, __ver_minor__, __ver_patch__, __ver_sub__)