Skip to content

Commit

Permalink
Removed six from setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
henryykt committed Mar 26, 2020
1 parent 0ecae9a commit a3b4ca0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import os
import platform
import six
import sys
from setuptools import setup, find_packages

Expand Down Expand Up @@ -165,7 +164,7 @@ def find_make(alt=('gmake', 'gnumake', 'make', 'nmake')):
return make


if six.PY2:
if sys.version_info[0] < 3:
with open(os.path.join(BASE_PATH, 'README.rst'), 'U') as f:
long_description = f.read()
else:
Expand Down

0 comments on commit a3b4ca0

Please sign in to comment.