File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 3
3
What's New
4
4
**********
5
5
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)
7
12
=========================================
8
13
9
14
This is a major bug-fix release, including:
Original file line number Diff line number Diff line change 12
12
except ImportError :
13
13
from distutils .core import setup
14
14
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
-
19
15
if sys .argv [- 1 ] == 'publish' :
20
16
os .system ('python setup.py sdist upload' )
21
17
sys .exit ()
Original file line number Diff line number Diff line change 87
87
__copyright__ = 'Copyright 2013-2018 Python Charmers Pty Ltd'
88
88
__ver_major__ = 0
89
89
__ver_minor__ = 17
90
- __ver_patch__ = 0
90
+ __ver_patch__ = 1
91
91
__ver_sub__ = ''
92
92
__version__ = "%d.%d.%d%s" % (__ver_major__ , __ver_minor__ ,
93
93
__ver_patch__ , __ver_sub__ )
You can’t perform that action at this time.
0 commit comments