]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup: loosen requirement on simplejson to >= 1.4
authorZooko O'Whielacronx <zooko@zooko.com>
Mon, 8 Dec 2008 15:35:37 +0000 (08:35 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Mon, 8 Dec 2008 15:35:37 +0000 (08:35 -0700)
That's the version of simplejson that comes with ubuntu feisty, and the one that we've required for most of our history.  Currently the Ubuntu dapper buildslave fails (see issue #534), and setting the simplejson requirement to be >= 2.0 would fix that failure, but I don't understand why.

_auto_deps.py

index d417e171bec3d5c788a4031ef35110b524aded11..a09894f96457a4c69183326ec0dd89826695416c 100644 (file)
@@ -11,8 +11,8 @@ install_requires=[
 
                   # 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",
+                  # see ticket #555.  Feisty has simplejson 1.4
+                  "simplejson >= 1.4",
 
                   "zope.interface",
                   "Twisted >= 2.4.0",