Skip to content

Commit 44a59e7

Browse files
committed
Confirm compatibility for Django 2.2 & Update changelogs
1 parent 404a8f9 commit 44a59e7

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

.travis.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ env:
1212
- TOX_ENV=py35-django18
1313
- TOX_ENV=py35-django111
1414
- TOX_ENV=py35-django20
15-
- TOX_ENV=py35-djangomaster
15+
- TOX_ENV=py35-django21
16+
- TOX_ENV=py35-django22
1617
matrix:
1718
include:
1819
- env: TOX_ENV=py36-django18
@@ -21,6 +22,10 @@ matrix:
2122
python: "3.6"
2223
- env: TOX_ENV=py36-django20
2324
python: "3.6"
25+
- env: TOX_ENV=py36-django21
26+
python: "3.6"
27+
- env: TOX_ENV=py36-django22
28+
python: "3.6"
2429
- env: TOX_ENV=py36-djangomaster
2530
python: "3.6"
2631
install: pip install tox

CHANGELOG.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ Changelog
44
0.6.3 (unreleased)
55
------------------
66

7-
- Nothing changed yet.
8-
7+
- Confirm compatibility with Django 2.2
8+
- Compatibility with Django 2.1 added.
9+
From @tsouvarev work : https://github.com/python-babel/django-babel/pull/45
910

1011
0.6.2 (2017-12-18)
1112
------------------

tox.ini

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
[tox]
2-
envlist = py{35,36,37}-django{21,master}, py{27,34,35,36}-django{18,111,20}, lint, docs
2+
envlist = py{27,34,35,36}-django{18,111},
3+
py{35,36,37}-django{20,21,22},
4+
py{36,37}-django{master},
5+
lint, docs
36

47
[testenv]
58
deps =
@@ -12,6 +15,7 @@ deps =
1215
django111: Django>=1.11,<2.0
1316
django20: Django>=2.0,<2.1
1417
django21: Django>=2.1,<2.2
18+
django22: Django>=2.2,<3
1519
djangomaster: https://github.com/django/django/archive/master.tar.gz#egg=Django
1620
commands = py.test {posargs}
1721

0 commit comments

Comments
 (0)