From f19ad2b2cbc4d08a6c5622618eceecf782c3b944 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Tue, 9 Aug 2016 18:24:15 +0530 Subject: [PATCH] Bump required version of Django to 1.10 Since Debian testing now has Django 1.10. There is no necessity to support older versions of Django. The fix for showing menu items does depend on a small feature that is introduced in Django 1.10: django.setup(set_prefix=True) and FORCE_SCRIPT_NAME. --- .travis.yml | 4 +--- setup.py | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 877bbe358..f9dcaa297 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,9 +5,7 @@ sudo: required language: generic env: - - DJANGO_VERSION=">=1.7.0,<1.8.0" - - DJANGO_VERSION=">=1.8.0,<1.9.0" - - DJANGO_VERSION=">=1.9.0" + - DJANGO_VERSION=">=1.10.0" # Debian packages required before_install: diff --git a/setup.py b/setup.py index c4d3afd66..0cd89244a 100755 --- a/setup.py +++ b/setup.py @@ -180,7 +180,7 @@ setuptools.setup( setup_requires=['setuptools-git'], install_requires=[ 'cherrypy >= 3.0', - 'django >= 1.7.0', + 'django >= 1.10.0', 'django-bootstrap-form', 'django-stronghold', 'psutil',