Merge pull request #3 from nikdoof/nikdoof-disable-django17

Remove Django 1.7 support
This commit is contained in:
2015-01-29 09:34:40 +00:00
2 changed files with 4 additions and 9 deletions

View File

@@ -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/"

View File

@@ -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',
)