Skip to content

Commit e68e47b

Browse files
authored
Remove 'use_2to3' from setup.py
'use_2to3' is no longer supported.
1 parent 57792d3 commit e68e47b

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

IfxPy/setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,7 @@
186186
# Supporting both Python 2 and Python 3 with Setuptools
187187
# http://setuptools.readthedocs.io/en/latest/python3.html
188188
extra = {}
189-
if sys.version_info >= (3, ):
190-
extra['use_2to3'] = True
191-
else:
189+
if sys.version_info < (3, ):
192190
VERSION = VERSION2X
193191
PYTHON_REQ = PYTHON_REQ_2X
194192

0 commit comments

Comments
 (0)