]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Fix version check warnings for httplib2 and python-gflags (used by oauth2client).
authorDaira Hopwood <david-sarah@jacaranda.org>
Thu, 18 Apr 2013 21:43:41 +0000 (22:43 +0100)
committerDaira Hopwood <daira@jacaranda.org>
Wed, 9 Apr 2014 00:33:56 +0000 (01:33 +0100)
Signed-off-by: Daira Hopwood <david-sarah@jacaranda.org>
src/allmydata/__init__.py
src/allmydata/_auto_deps.py

index 78e157d5203980b8eb68f0c13bd8d7ac03510a00..694b6e6c55abc17751b18905a7ff883af8165461 100644 (file)
@@ -282,7 +282,7 @@ def cross_check(pkg_resources_vers_and_locs, imported_vers_and_locs_list):
 
     errors = []
     not_pkg_resourceable = set(['python', 'platform', __appname__.lower()])
-    not_import_versionable = set(['zope.interface', 'mock', 'pyasn1'])
+    not_import_versionable = set(['zope.interface', 'mock', 'pyasn1', 'python-gflags'])
     ignorable = set(['argparse', 'pyutil', 'zbase32', 'distribute', 'twisted-web', 'twisted-core', 'twisted-conch', 'six'])
 
     for name, (imp_ver, imp_loc, imp_comment) in imported_vers_and_locs_list:
index 8a27fdeb733d3c16dd3fe94b43880844ef4dfe25..63bf7576ddcec909e9cc01f7782037f81b7648a0 100644 (file)
@@ -95,6 +95,8 @@ package_imports = [
     ('txAWS',           'txaws'),
     ('oauth2client',    'oauth2client'),
     ('python-dateutil', 'dateutil'),
+    ('httplib2',        'httplib2'),
+    ('python-gflags',   'gflags'),
 ]
 
 def require_more():