Skip to content

Commit

Permalink
FIX: setuptools workaround Py2/3 bug
Browse files Browse the repository at this point in the history
  • Loading branch information
norok2 committed May 2, 2017
1 parent 85a2e59 commit 0927d43
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@

# ======================================================================
# :: Future Imports (for Python 2)
from __future__ import division
from __future__ import absolute_import
from __future__ import print_function
# from __future__ import unicode_literals
from __future__ import (
division, absolute_import, print_function)
# BUG in setuptools if import unicode_literals

# ======================================================================
# :: Python Standard Library Imports
Expand Down

0 comments on commit 0927d43

Please sign in to comment.