]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup.py: Require simplejson version >= 2.0.5
authorfrancois <francois@ctrlaltdel.ch>
Tue, 25 Nov 2008 18:17:27 +0000 (11:17 -0700)
committerfrancois <francois@ctrlaltdel.ch>
Tue, 25 Nov 2008 18:17:27 +0000 (11:17 -0700)
setup.py

index c2b0bc691c0d10e6a16edf1bde50e5abc19f0f70..216840543f40ee9c703601ae0ec747c78f11e8c3 100644 (file)
--- 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):