From 7fa41ae3baf79e86759c974d7e218b48455947a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Ates?= Date: Thu, 10 Sep 2015 18:09:15 +0200 Subject: [PATCH] Add simplejson dependency and freeze dependencies versions. --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index f141c62..eb7a197 100755 --- a/setup.py +++ b/setup.py @@ -120,9 +120,10 @@ setup(name='biomon', ], }, install_requires=[ - 'django >= 1.8.2', - 'matplotlib>=1.4.3', - 'whisper>=0.9.13', + 'django=1.8.2', + 'matplotlib=1.4.3', + 'whisper=0.9.13', + 'simplejson=3.8.0', ], cmdclass={ 'build': build,