mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-02 10:44:42 +00:00
Merge pull request #143 from osminogin/support-django-1.10
Django 1.10 support
This commit is contained in:
commit
1f0c45d124
3 changed files with 9 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
============
|
||||
|
|
|
|||
5
setup.py
5
setup.py
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in a new issue