]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Add dependency on our fork of txAWS (0.2.1.post5).
authorDaira Hopwood <daira@jacaranda.org>
Fri, 17 Apr 2015 18:22:15 +0000 (19:22 +0100)
committerDaira Hopwood <daira@jacaranda.org>
Fri, 17 Apr 2015 21:31:01 +0000 (22:31 +0100)
This also makes our dependency on six unconditional, rather than only
depending on six when pyOpenSSL >= 0.14 is used.

Signed-off-by: Daira Hopwood <daira@jacaranda.org>
src/allmydata/_auto_deps.py

index a42bc17b85fca86fc9e47424b138cb3254571133..06e3d06725f29c84f93034894049700647b3e564 100644 (file)
@@ -46,6 +46,12 @@ install_requires = [
 
     # pycryptopp-0.6.0 includes ed25519
     "pycryptopp >= 0.6.0",
+
+    # needed for cloud backend
+    "txAWS == 0.2.1.post5",
+
+    # needed for cloud backend; also latest cryptography depends on this version
+    "six >= 1.4.1",
 ]
 
 # Includes some indirect dependencies, but does not include allmydata.
@@ -65,6 +71,9 @@ package_imports = [
     ('pycrypto',         'Crypto'),
     ('pyasn1',           'pyasn1'),
     ('mock',             'mock'),
+    ('txAWS',            'txaws'),
+    ('python-dateutil',  'dateutil'),
+    ('six',              'six'),
 ]
 
 # Dependencies for which we don't know how to get a version number at run-time.
@@ -205,7 +214,6 @@ if _can_use_pyOpenSSL_0_14:
         #
         "cryptography",
         "cffi >= 0.8",          # latest cryptography depends on this version
-        "six >= 1.4.1",         # latest cryptography depends on this version
         "enum34",               # latest cryptography depends on this
         "pycparser",            # cffi depends on this
     ]
@@ -213,7 +221,6 @@ if _can_use_pyOpenSSL_0_14:
     package_imports += [
         ('cryptography',     'cryptography'),
         ('cffi',             'cffi'),
-        ('six',              'six'),
         ('enum34',           'enum'),
         ('pycparser',        'pycparser'),
     ]