From: Zooko O'Whielacronx Date: Mon, 8 Dec 2008 15:35:37 +0000 (-0700) Subject: setup: loosen requirement on simplejson to >= 1.4 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=8e22556e66a6d948b826852e037bf06280f70300;p=tahoe-lafs%2Ftahoe-lafs.git setup: loosen requirement on simplejson to >= 1.4 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. --- diff --git a/_auto_deps.py b/_auto_deps.py index d417e171..a09894f9 100644 --- a/_auto_deps.py +++ b/_auto_deps.py @@ -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",