From: francois <francois@ctrlaltdel.ch>
Date: Tue, 25 Nov 2008 18:17:27 +0000 (-0700)
Subject: setup.py: Require simplejson version >= 2.0.5
X-Git-Url: https://git.rkrishnan.org/%5B/frontends/%22news.html/%22doc.html?a=commitdiff_plain;h=8c5a0f1efcb4751f232b377a01435016116c15d5;p=tahoe-lafs%2Ftahoe-lafs.git

setup.py: Require simplejson version >= 2.0.5
---

diff --git a/setup.py b/setup.py
index c2b0bc69..21684054 100644
--- a/setup.py
+++ b/setup.py
@@ -208,6 +208,10 @@ if 'darcsver' in sys.argv[1:]:
 if not os.path.exists('PKG-INFO'):
     setup_requires.append('setuptools_darcs >= 1.1.0')
 
+# Previous versions seems to have unicode issues
+# See Bug #543
+setup_requires.append('simplejson >= 2.0.5')
+
 class ShowSupportLib(Command):
     user_options = []
     def initialize_options(self):