Skip to content

Commit 3e8ff14

Browse files
YomesIncconst-cloudinary
authored andcommitted
Add support of Django2.2
1 parent ddba6c3 commit 3e8ff14

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ matrix:
2727
env: TOXENV=py27-django111
2828
- python: 3.6
2929
env: TOXENV=py36-django111
30+
- python: 3.6
31+
env: TOXENV=py36-django22
3032
- python: 3.5
3133
env: TOXENV=py35-django20
3234
- python: 3.7
@@ -37,6 +39,10 @@ matrix:
3739
dist: xenial
3840
sudo: true
3941
env: TOXENV=py37-django21
42+
- python: 3.7
43+
dist: xenial
44+
sudo: true
45+
env: TOXENV=py37-django22
4046
install:
4147
- pip install tox
4248
script:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"Framework :: Django :: 1.11",
2626
"Framework :: Django :: 2.0",
2727
"Framework :: Django :: 2.1",
28+
"Framework :: Django :: 2.2",
2829
"Intended Audience :: Developers",
2930
"License :: OSI Approved :: MIT License",
3031
"Programming Language :: Python",

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ envlist =
33
py{27,34,35,36,37}-core
44
py{27,34,35}-django{18,19,110}
55
py{27,34,35,36}-django{111}
6-
py{36,37}-django{20,21}
6+
py{36,37}-django{20,21,22}
77
[testenv]
88
usedevelop = True
99
commands =
1010
py{27,34,35,36,37}-core: python setup.py test {env:P_ARGS:}
11-
py{27,34,35,36,37}-django{18,19,110,111,20,21}: django-admin.py test -v2 django_tests {env:D_ARGS:}
11+
py{27,34,35,36,37}-django{18,19,110,111,20,21,22}: django-admin.py test -v2 django_tests {env:D_ARGS:}
1212
passenv = *
1313
deps =
1414
django18: Django>=1.8,<1.9
@@ -17,5 +17,6 @@ deps =
1717
django111: Django>=1.11,<1.12
1818
django20: Django>=2.0,<2.1
1919
django21: Django>=2.1,<2.2
20+
django22: Django>=2.2,<2.3
2021
setenv =
2122
DJANGO_SETTINGS_MODULE=django_tests.settings

0 commit comments

Comments
 (0)