From 3e5996531c3d75806423a5deca5f569dedb0bf9e Mon Sep 17 00:00:00 2001 From: Joseph Kahn Date: Fri, 14 Aug 2015 00:12:05 -0400 Subject: [PATCH 1/4] bump requirement --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 47f8d07..4260e6b 100755 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ include_package_data=True, install_requires=[ 'django', - 'django-jsonview==0.4.3', + 'django-jsonview==0.5.0', ], license="BSD", zip_safe=False, From 46d54f6fc0f9731f5cf71136d6e08af154a781d1 Mon Sep 17 00:00:00 2001 From: Joseph Kahn Date: Fri, 14 Aug 2015 00:13:52 -0400 Subject: [PATCH 2/4] bump in test file too --- requirements-test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-test.txt b/requirements-test.txt index 14e1bcf..81a1430 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -1,5 +1,5 @@ django -django-jsonview==0.3.0 +django-jsonview==0.5.0 coverage coveralls From 81aa1b23ccd943286e005b2627aea264f233180c Mon Sep 17 00:00:00 2001 From: Joseph Kahn Date: Fri, 14 Aug 2015 00:19:45 -0400 Subject: [PATCH 3/4] test against Django 1.8.3 as well --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 01629af..f6da00f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,7 @@ env: - DJANGO_VERSION=1.4.15 - DJANGO_VERSION=1.6.7 - DJANGO_VERSION=1.7.0 + - DJANGO_VERSION=1.8.3 # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: pip install -r requirements-test.txt From 1a1871115e7425567be77c05964dac64b3e6d54f Mon Sep 17 00:00:00 2001 From: Joseph Kahn Date: Fri, 14 Aug 2015 10:28:47 -0400 Subject: [PATCH 4/4] update supported django versions to test in travis --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index f6da00f..4c3d54f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,9 +7,8 @@ python: - "3.4" env: - - DJANGO_VERSION=1.4.15 - - DJANGO_VERSION=1.6.7 - - DJANGO_VERSION=1.7.0 + - DJANGO_VERSION=1.4.21 + - DJANGO_VERSION=1.7.9 - DJANGO_VERSION=1.8.3 # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors