From aca6691ce6765b9d4b28a39012a5cf59a5cbe355 Mon Sep 17 00:00:00 2001 From: Johannes Christ Date: Sat, 20 Apr 2019 14:53:43 +0200 Subject: [PATCH] Add Django 2.2 to the test matrix. --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 15b2dae7..15c9e1f2 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] # Ensure you add to .travis.yml if you add here, using `tox -l` -envlist = {py34,py35,py36,py37}-django{111,20,21},lint +envlist = {py34,py35,py36,py37}-django{111,20,21,22},lint [travis] @@ -15,6 +15,7 @@ DJANGO = 1.11: django111 2.0: django20 2.1: django21 + 2.2: django22 LINT = yes: lint @@ -38,6 +39,7 @@ deps = django111: Django>=1.11,<2.0 django20: Django>=2.0,<2.1 django21: Django>=2.1,<2.2 + django22: Django>=2.2,<2.3 basepython = py34: python3.4 -- 2.45.2