From: Brian Warner <warner@lothar.com>
Date: Sat, 16 Mar 2013 04:46:32 +0000 (-0700)
Subject: bump 'mock' dependency to >=0.8.0, to get the .call object
X-Git-Tag: allmydata-tahoe-1.10a1~12
X-Git-Url: https://git.rkrishnan.org/pf/content/simplejson/-?a=commitdiff_plain;h=427193d855f4d232ec0ceb2f683a59401113993f;p=tahoe-lafs%2Ftahoe-lafs.git

bump 'mock' dependency to >=0.8.0, to get the .call object

The 0.6.0 version that was previously allowed did not provide .call, so
test_cli.py failed during import.
---

diff --git a/src/allmydata/_auto_deps.py b/src/allmydata/_auto_deps.py
index 7cce8fc1..a978527a 100644
--- a/src/allmydata/_auto_deps.py
+++ b/src/allmydata/_auto_deps.py
@@ -57,8 +57,8 @@ install_requires = [
     "pycrypto == 2.1.0, == 2.3, >= 2.4.1",
     "pyasn1 >= 0.0.8a",
 
-    # http://www.voidspace.org.uk/python/mock/
-    "mock",
+    # http://www.voidspace.org.uk/python/mock/ , 0.8.0 provides "call"
+    "mock >= 0.8.0",
 
     # pycryptopp-0.6.0 includes ed25519
     "pycryptopp >= 0.6.0",