mirror of
https://github.com/Hopiu/django-uuslug.git
synced 2026-03-16 20:10:24 +00:00
Add django 1.8 drop unsupported django versions
This commit is contained in:
parent
d8a67938bc
commit
471908cc28
1 changed files with 10 additions and 8 deletions
18
.travis.yml
18
.travis.yml
|
|
@ -9,9 +9,9 @@ python:
|
|||
- pypy
|
||||
|
||||
env:
|
||||
- DJANGO="django==1.7"
|
||||
- DJANGO="django==1.6.7"
|
||||
- DJANGO="django==1.4.15"
|
||||
- DJANGO="django==1.8"
|
||||
- DJANGO="django==1.7.7"
|
||||
- DJANGO="django==1.4.20"
|
||||
|
||||
install:
|
||||
- pip install $DJANGO
|
||||
|
|
@ -22,17 +22,19 @@ install:
|
|||
|
||||
before_script:
|
||||
- "pep8 --exclude=migrations --ignore=E501,E225,E128 ."
|
||||
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pyflakes -x W ipware; fi
|
||||
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pyflakes -x W uuslug; fi
|
||||
|
||||
matrix:
|
||||
exclude:
|
||||
- python: "3.4"
|
||||
env: DJANGO="django==1.4.15"
|
||||
env: DJANGO="django==1.4.20"
|
||||
- python: "3.3"
|
||||
env: DJANGO="django==1.4.15"
|
||||
env: DJANGO="django==1.4.20"
|
||||
- python: "3.2"
|
||||
env: DJANGO="django==1.4.15"
|
||||
env: DJANGO="django==1.4.20"
|
||||
- python: "2.6"
|
||||
env: DJANGO="django==1.7"
|
||||
env: DJANGO="django==1.7.7"
|
||||
- python: "2.6"
|
||||
env: DJANGO="django==1.8"
|
||||
|
||||
script: python manage.py test
|
||||
|
|
|
|||
Loading…
Reference in a new issue