mirror of
https://github.com/nikdoof/django-eveigb.git
synced 2025-12-17 19:49:22 +00:00
Merge pull request #3 from nikdoof/nikdoof-disable-django17
Remove Django 1.7 support
This commit is contained in:
11
.travis.yml
11
.travis.yml
@@ -3,10 +3,9 @@ python:
|
|||||||
- "2.6"
|
- "2.6"
|
||||||
- "2.7"
|
- "2.7"
|
||||||
env:
|
env:
|
||||||
- DJANGO="django==1.4.13"
|
- DJANGO="django==1.4.19"
|
||||||
- DJANGO="django==1.5.8"
|
- DJANGO="django==1.5.12"
|
||||||
- DJANGO="django==1.6.5"
|
- DJANGO="django==1.6.10"
|
||||||
- DJANGO="https://www.djangoproject.com/download/1.7c2/tarball/"
|
|
||||||
install:
|
install:
|
||||||
- pip install -q $DJANGO --use-mirrors
|
- pip install -q $DJANGO --use-mirrors
|
||||||
- pip install -q . --use-mirrors
|
- pip install -q . --use-mirrors
|
||||||
@@ -17,7 +16,3 @@ before_script:
|
|||||||
script:
|
script:
|
||||||
- python setup.py test
|
- python setup.py test
|
||||||
|
|
||||||
matrix:
|
|
||||||
exclude:
|
|
||||||
- python: "2.6"
|
|
||||||
env: DJANGO="https://www.djangoproject.com/download/1.7c2/tarball/"
|
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -12,6 +12,6 @@ setup(name="django-eveigb",
|
|||||||
url="https://github.com/nikdoof/django-eveigb",
|
url="https://github.com/nikdoof/django-eveigb",
|
||||||
keywords="eveonline django igb",
|
keywords="eveonline django igb",
|
||||||
packages=['eveigb'],
|
packages=['eveigb'],
|
||||||
install_requires=['Django>=1.4'],
|
install_requires=['Django>=1.4,<1.7'],
|
||||||
test_suite='test_project.tests.runtests',
|
test_suite='test_project.tests.runtests',
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user