Skip to content

Commit 988bf89

Browse files
author
Jordan Adler
committed
Bump for release
1 parent e2e6792 commit 988bf89

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

docs/whatsnew.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@
33
What's New
44
**********
55

6-
What's new in version 0.17 (2018-10-19)
6+
What's new in version 0.17.1 (2019-10-30)
7+
=========================================
8+
This release address a packaging error because of an erroneous declaration that
9+
any built wheels are universal.
10+
11+
What's new in version 0.17.0 (2018-10-19)
712
=========================================
813

914
This is a major bug-fix release, including:

setup.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@
1212
except ImportError:
1313
from distutils.core import setup
1414

15-
if sys.argv[-1] == 'sdist' and sys.version_info[0] >= 3:
16-
print('ERROR: You must build python-future with Python 2', file=sys.stderr)
17-
sys.exit(1)
18-
1915
if sys.argv[-1] == 'publish':
2016
os.system('python setup.py sdist upload')
2117
sys.exit()

src/future/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
__copyright__ = 'Copyright 2013-2018 Python Charmers Pty Ltd'
8888
__ver_major__ = 0
8989
__ver_minor__ = 17
90-
__ver_patch__ = 0
90+
__ver_patch__ = 1
9191
__ver_sub__ = ''
9292
__version__ = "%d.%d.%d%s" % (__ver_major__, __ver_minor__,
9393
__ver_patch__, __ver_sub__)

0 commit comments

Comments
 (0)