From 2f41f9c241d53ecad5f92ac23a159729039fa78b Mon Sep 17 00:00:00 2001 From: Ghislain Antony Vaillant Date: Wed, 27 Apr 2016 19:47:07 +0100 Subject: [PATCH] Drop versioned dependency on setuptools. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 4c10373..2e88064 100644 --- a/setup.py +++ b/setup.py @@ -89,7 +89,7 @@ def txt_read(*paths): # requirements setup_args['setup_requires'] =\ [ - "setuptools==19.2", + "setuptools", "wheel", ] setup_args['install_requires'] =\ @@ -121,4 +121,4 @@ def txt_read(*paths): # Do the actual setup now # --------------------------------------------------------------------------- -setup(**setup_args) \ No newline at end of file +setup(**setup_args)