]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup: require simplejson >= 1.7.1
authorZooko O'Whielacronx <zooko@zooko.com>
Mon, 8 Dec 2008 05:34:12 +0000 (22:34 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Mon, 8 Dec 2008 05:34:12 +0000 (22:34 -0700)
That's the version that comes with gutsy, and we don't really understand why increasing the required version number helped with issue #553.

_auto_deps.py

index a8b06026b2a7ffbf21184836be249ace827e6b02..d417e171bec3d5c788a4031ef35110b524aded11 100644 (file)
@@ -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",