From 2523ecf32bd795f858a0fc4245974040640693f6 Mon Sep 17 00:00:00 2001 From: Alexander Duryagin Date: Fri, 26 Oct 2018 22:14:53 +0300 Subject: [PATCH 1/4] "future" wheel is not universal --- setup.cfg | 3 --- 1 file changed, 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 2e9053c0..498ec14a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,2 @@ -[bdist_wheel] -universal = 1 - [metadata] license_file = LICENSE.txt From e2e679269a64cda4f814c58a7a10053dd046fea0 Mon Sep 17 00:00:00 2001 From: Jordan Adler Date: Fri, 26 Oct 2018 18:17:01 -0700 Subject: [PATCH 2/4] Bail if building with Py3 --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index 2f7b36a3..3cad4492 100755 --- a/setup.py +++ b/setup.py @@ -12,6 +12,9 @@ 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') From 5337ae1a4c048e332292c8fdedd61fbd561fac9a Mon Sep 17 00:00:00 2001 From: Vincent Philippon Date: Mon, 29 Oct 2018 10:37:39 -0400 Subject: [PATCH 3/4] Revert "Bail if building with Py3" --- setup.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/setup.py b/setup.py index 3cad4492..2f7b36a3 100755 --- a/setup.py +++ b/setup.py @@ -12,9 +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') From 988bf89bf652d3df39de63e97992a5ee64b4a0ca Mon Sep 17 00:00:00 2001 From: Jordan Adler Date: Tue, 30 Oct 2018 17:15:21 -0700 Subject: [PATCH 4/4] 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__)