From 01ac2e26dc11f171a7bc813b72d1b715c26ecb5c Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Thu, 29 Jan 2015 09:27:18 +0000 Subject: [PATCH 1/2] Not supported on Django 1.7 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7158f9b..53817ed 100755 --- a/setup.py +++ b/setup.py @@ -12,6 +12,6 @@ setup(name="django-eveigb", url="https://github.com/nikdoof/django-eveigb", keywords="eveonline django igb", packages=['eveigb'], - install_requires=['Django>=1.4'], + install_requires=['Django>=1.4,<1.7'], test_suite='test_project.tests.runtests', ) From 2b2efd396b86d4edf383b3c7f986b2f3f8177bc0 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Thu, 29 Jan 2015 09:32:32 +0000 Subject: [PATCH 2/2] Update Travis config --- .travis.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7189eea..d408827 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,10 +3,9 @@ python: - "2.6" - "2.7" env: - - DJANGO="django==1.4.13" - - DJANGO="django==1.5.8" - - DJANGO="django==1.6.5" - - DJANGO="https://www.djangoproject.com/download/1.7c2/tarball/" + - DJANGO="django==1.4.19" + - DJANGO="django==1.5.12" + - DJANGO="django==1.6.10" install: - pip install -q $DJANGO --use-mirrors - pip install -q . --use-mirrors @@ -17,7 +16,3 @@ before_script: script: - python setup.py test -matrix: - exclude: - - python: "2.6" - env: DJANGO="https://www.djangoproject.com/download/1.7c2/tarball/"