From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Mon, 8 Dec 2008 05:34:12 +0000 (-0700)
Subject: setup: require simplejson >= 1.7.1
X-Git-Url: https://git.rkrishnan.org/frontends/listings/something?a=commitdiff_plain;h=9d729109d2d4c24aae26ca61b04b3dff42657346;p=tahoe-lafs%2Ftahoe-lafs.git

setup: require simplejson >= 1.7.1
That's the version that comes with gutsy, and we don't really understand why increasing the required version number helped with issue #553.
---

diff --git a/_auto_deps.py b/_auto_deps.py
index a8b06026..d417e171 100644
--- a/_auto_deps.py
+++ b/_auto_deps.py
@@ -9,8 +9,10 @@ install_requires=[
                   "pycryptopp >= 0.5",
                   "zfec >= 1.1.0",
 
-                  # We had a unicode problem with simplejson 1.8.1 on dapper -- see ticket #543.
-                  "simplejson > 1.8.1",
+                  # We had a unicode problem with simplejson 1.8.1 on dapper -- see ticket #543,
+                  # but we want to install using Gutsy or Hardy simplejson .deb's if possible --
+                  # see ticket #555.
+                  "simplejson >= 1.7.1",
 
                   "zope.interface",
                   "Twisted >= 2.4.0",