Skip to content

Commit

Permalink
Confirm compatibility for Django 2.2 & Update changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
joehybird committed Apr 15, 2019
1 parent 404a8f9 commit 44a59e7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ env:
- TOX_ENV=py35-django18
- TOX_ENV=py35-django111
- TOX_ENV=py35-django20
- TOX_ENV=py35-djangomaster
- TOX_ENV=py35-django21
- TOX_ENV=py35-django22
matrix:
include:
- env: TOX_ENV=py36-django18
Expand All @@ -21,6 +22,10 @@ matrix:
python: "3.6"
- env: TOX_ENV=py36-django20
python: "3.6"
- env: TOX_ENV=py36-django21
python: "3.6"
- env: TOX_ENV=py36-django22
python: "3.6"
- env: TOX_ENV=py36-djangomaster
python: "3.6"
install: pip install tox
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ Changelog
0.6.3 (unreleased)
------------------

- Nothing changed yet.

- Confirm compatibility with Django 2.2
- Compatibility with Django 2.1 added.
From @tsouvarev work : https://github.com/python-babel/django-babel/pull/45

0.6.2 (2017-12-18)
------------------
Expand Down
6 changes: 5 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
[tox]
envlist = py{35,36,37}-django{21,master}, py{27,34,35,36}-django{18,111,20}, lint, docs
envlist = py{27,34,35,36}-django{18,111},
py{35,36,37}-django{20,21,22},
py{36,37}-django{master},
lint, docs

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

Expand Down

0 comments on commit 44a59e7

Please sign in to comment.