From: Daira Hopwood Date: Fri, 10 Jul 2015 04:33:25 +0000 (+0100) Subject: Fix version check warnings for httplib2 and python-gflags (used by oauth2client). X-Git-Url: https://git.rkrishnan.org/provisioning?a=commitdiff_plain;h=724134a6a4b6710759585e571d954aff3a332bd9;p=tahoe-lafs%2Ftahoe-lafs.git Fix version check warnings for httplib2 and python-gflags (used by oauth2client). Signed-off-by: Daira Hopwood --- diff --git a/src/allmydata/_auto_deps.py b/src/allmydata/_auto_deps.py index da44cbe2..38d41836 100644 --- a/src/allmydata/_auto_deps.py +++ b/src/allmydata/_auto_deps.py @@ -87,12 +87,15 @@ package_imports = [ ('txAWS', 'txaws'), ('oauth2client', 'oauth2client'), ('python-dateutil', 'dateutil'), + ('httplib2', 'httplib2'), + ('python-gflags', 'gflags'), ('six', 'six'), ] # Dependencies for which we don't know how to get a version number at run-time. not_import_versionable = [ 'zope.interface', + 'python-gflags', ] # Dependencies reported by pkg_resources that we can safely ignore.