From 7bc44c74ff2beb735837217b0b8accb534b91488 Mon Sep 17 00:00:00 2001 From: Brent O'Connor Date: Mon, 31 Aug 2020 09:05:04 -0500 Subject: [PATCH] Update tox tests to run Django 3.1 and removed support for Python 2.7 --- tox.ini | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tox.ini b/tox.ini index 73c9f99..04440c5 100644 --- a/tox.ini +++ b/tox.ini @@ -1,9 +1,8 @@ [tox] envlist = begin - py27-lint - py27-django{111} - py36-django{111,2,21,22,3} + py36-lint + py36-django{111,2,21,22,3,31} coverage-report [testenv] @@ -12,6 +11,7 @@ deps= django21: Django>=2.1,<2.2 django22: Django>=2.2,<2.3 django3: Django>=3.0,<3.1 + django31: Django>=3.1,<3.2 django111: Django>=1.11,<1.12 coverage pillow @@ -24,7 +24,7 @@ commands= [testenv:begin] commands = coverage erase -[testenv:py27-lint] +[testenv:py36-lint] deps= flake8