From 8b47ce1b19367165181856365a0d0ed92bb5a64b Mon Sep 17 00:00:00 2001 From: Ann Paul Date: Mon, 20 Apr 2015 15:52:59 -0700 Subject: [PATCH] Add django-jsonfield dependency to setup file and update pip --- requirements.txt | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 0828b7f..9c0b077 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ Django>=1.5 #allows use of verified JSON model fields -django-jsonfield==0.9.13 +django-jsonfield>=0.9.13 diff --git a/setup.py b/setup.py index 969439f..443d5f3 100644 --- a/setup.py +++ b/setup.py @@ -11,6 +11,7 @@ setup( author_email='janjelle@jjkester.nl', description='Audit log app for Django', install_requires=[ - 'Django>=1.5' + 'Django>=1.5', + 'django-jsonfield>=0.9.13' ] )