Merge pull request #143 from osminogin/support-django-1.10

Django 1.10 support
This commit is contained in:
Yang.Y 2016-09-04 17:22:21 +08:00 committed by GitHub
commit 1f0c45d124
3 changed files with 9 additions and 1 deletions

View file

@ -8,6 +8,7 @@ env:
- DJANGO=1.7
- DJANGO=1.8
- DJANGO=1.9
- DJANGO=1.10
install:
# command to install dependencies
- "pip install coveralls"
@ -23,5 +24,7 @@ matrix:
env: DJANGO=1.7
- python: "3.3"
env: DJANGO=1.9
- python: "3.3"
env: DJANGO=1.10
after_success:
- coveralls

View file

@ -29,7 +29,7 @@ Requirements
============
- Python 2.7, 3.3, 3.4, 3.5
- Django 1.7, 1.8, 1.9
- Django 1.7, 1.8, 1.9, 1.10
Installation
============

View file

@ -48,6 +48,11 @@ setup(
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Framework :: Django',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.7',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python',