From: Daira Hopwood <daira@jacaranda.org>
Date: Fri, 16 Oct 2015 16:52:58 +0000 (+0100)
Subject: Tweak requirement for six and declare python-gflags as not import-versionable.
X-Git-Url: https://git.rkrishnan.org/components/COPYING.TGPPL.html?a=commitdiff_plain;h=b85ee2028d35c037abacd679d37f29b3e0e94cf9;p=tahoe-lafs%2Ftahoe-lafs.git

Tweak requirement for six and declare python-gflags as not import-versionable.

Signed-off-by: Daira Hopwood <daira@jacaranda.org>
---

diff --git a/src/allmydata/_auto_deps.py b/src/allmydata/_auto_deps.py
index 1d14e47a..d9985db0 100644
--- a/src/allmydata/_auto_deps.py
+++ b/src/allmydata/_auto_deps.py
@@ -56,8 +56,8 @@ install_requires = [
     "txAWS == 0.2.1.post5",
     "oauth2client == 1.1.0",
 
-    # needed for cloud backend; also latest cryptography depends on this version
-    "six >= 1.4.1",
+    # needed for cloud backend; also latest pyOpenSSL depends on this version
+    "six >= 1.5.2",
 ]
 
 # Includes some indirect dependencies, but does not include allmydata.
@@ -90,6 +90,10 @@ package_imports = [
 # Dependencies for which we don't know how to get a version number at run-time.
 not_import_versionable = [
     'zope.interface',
+    'mock',
+    'pyasn1',
+    'pyasn1-modules',
+    'python-gflags',
 ]
 
 # Dependencies reported by pkg_resources that we can safely ignore.