From 42d9d767acd6f29ec34bde499d3bdf579e474517 Mon Sep 17 00:00:00 2001 From: Jan-Jelle Kester Date: Fri, 15 May 2015 00:17:50 +0200 Subject: [PATCH] Drop Django 1.5 support (unsupported version) --- .travis.yml | 1 - requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index cc6cfcd..71eb5d9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ python: - "2.7" - "3.4" env: - - DJANGO_VERSION=1.5 - DJANGO_VERSION=1.7 - DJANGO_VERSION=1.8 install: diff --git a/requirements.txt b/requirements.txt index be600a3..e38f742 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -Django>=1.5 +Django>=1.7 diff --git a/setup.py b/setup.py index 969439f..7e669dd 100644 --- a/setup.py +++ b/setup.py @@ -11,6 +11,6 @@ setup( author_email='janjelle@jjkester.nl', description='Audit log app for Django', install_requires=[ - 'Django>=1.5' + 'Django>=1.7' ] )