From 1cc3d88c1d23a81ffe35c3f96632cd101e2c7d16 Mon Sep 17 00:00:00 2001 From: mathiasg Date: Thu, 2 Nov 2017 12:56:43 -0400 Subject: [PATCH] inst: ensure later versions of setuptools are used --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 331fa5905b..5bd932f79f 100755 --- a/setup.py +++ b/setup.py @@ -119,7 +119,7 @@ def main(): with open(ver_file) as infofile: exec(infofile.read(), globals(), ldict) - SETUP_REQUIRES = ['future'] + SETUP_REQUIRES = ['future', 'setuptools>=36.6.0'] if sys.version_info <= (3, 4): SETUP_REQUIRES.append('configparser') setup(