From 544f87a3185f31580bb9b7de99dc961b85ff19c6 Mon Sep 17 00:00:00 2001 From: meejah Date: Mon, 12 Mar 2018 16:43:09 -0600 Subject: [PATCH] need setuptools for PEP440 identifiers (needs fixup, probably, just depending on latest setuptools) --- src/allmydata/_auto_deps.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/allmydata/_auto_deps.py b/src/allmydata/_auto_deps.py index 4f9b04828..6bd532bf2 100644 --- a/src/allmydata/_auto_deps.py +++ b/src/allmydata/_auto_deps.py @@ -20,7 +20,7 @@ install_requires = [ # need pkg_resources . We use >=11.3 here because that's what # "cryptography" requires (which is a sub-dependency of TLS-using # packages), so there's no point in requiring less. - "setuptools >= 11.3", + "setuptools >= 28.8.0", "zfec >= 1.1.0", @@ -150,7 +150,9 @@ import sys if not hasattr(sys, 'frozen'): package_imports.append(('setuptools', 'setuptools')) -setup_requires = [] +setup_requires = [ + 'setuptools >= 28.8.0', # for PEP-440 style versions +] # These are suppressed globally: