Skip to content

Commit c071b50

Browse files
authored
Merge pull request #16 from Niouby/master
update python/django support: add django 2.2
2 parents 64024ed + c65e254 commit c071b50

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

.travis.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,15 @@ matrix:
4242
- python: 3.7
4343
env: TOX_ENV=py37-django21
4444

45+
- python: 3.5
46+
env: TOX_ENV=py35-django22
47+
48+
- python: 3.6
49+
env: TOX_ENV=py36-django22
50+
51+
- python: 3.7
52+
env: TOX_ENV=py37-django22
53+
4554
- python: 3.5
4655
env: TOX_ENV=py35-djangostable
4756

HISTORY.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ History
66
1.0.5 (unreleased)
77
++++++++++++++++++
88

9-
- Nothing yet
9+
- Run tests for Django 2.2 and Python 3.5, 3.6 and 3.7
1010

1111
1.0.4 (2018-12-17)
1212
++++++++++++++++++

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
'Framework :: Django :: 1.11',
5454
'Framework :: Django :: 2.0',
5555
'Framework :: Django :: 2.1',
56+
'Framework :: Django :: 2.2',
5657
'Framework :: Django',
5758
'Intended Audience :: Developers',
5859
'License :: OSI Approved :: BSD License',

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
skipsdist = True
33
envlist =
44
{py27,py35,py36,py37}-django111
5-
{py35,py36,py37}-django{20,21,stable}
5+
{py35,py36,py37}-django{20,21,22,stable}
66
linters
77

88
[testenv]
@@ -18,6 +18,7 @@ deps =
1818
django111: Django>=1.11,<2.0
1919
django20: Django>=2.0,<2.1
2020
django21: Django>=2.1,<2.2
21+
django22: Django>=2.2,<2.3
2122
djangostable: Django
2223
-r{toxinidir}/requirements_test.txt
2324

0 commit comments

Comments
 (0)