From 7d171a8e37999725ee1a8c79fcd56a488dfcfffd Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Sun, 12 Oct 2014 16:08:42 -0500 Subject: [PATCH] Fix install_requires --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f8169691..e96fe71e 100755 --- a/setup.py +++ b/setup.py @@ -142,11 +142,11 @@ if __name__ == "__main__": configuration=configuration, install_requires=[ - "six>=%s" % '.'.join(str(d) for d in DEPENDENCIES['six']) + "six>=%s" % DEPENDENCIES['six'] ], packages=setuptools.find_packages(exclude=['doc']), include_package_data=True, - zip_safe=False, # the package can run out of an .egg file + zip_safe=False, # the package can run out of an .egg file entry_points={ 'console_scripts': ['skivi = skimage.scripts.skivi:main'],