From 8c5a0f1efcb4751f232b377a01435016116c15d5 Mon Sep 17 00:00:00 2001 From: francois Date: Tue, 25 Nov 2008 11:17:27 -0700 Subject: [PATCH] setup.py: Require simplejson version >= 2.0.5 --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) 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): -- 2.45.2