From 13410a6ce5bfb5879eeedbdafb02f0e02e408cda Mon Sep 17 00:00:00 2001 From: Dmitriy Chukhin Date: Mon, 11 Mar 2019 11:41:10 -0400 Subject: [PATCH] add python 3.7 and Django2.1 to envlist --- requirements.txt | 2 +- tox.ini | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 9eae646..904b57e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ Django==1.11 -psycopg2==2.6.1 +psycopg2==2.7.2 dj-database-url==0.4.1 gunicorn==19.6.0 diff --git a/tox.ini b/tox.ini index f26d029..ed608e7 100644 --- a/tox.ini +++ b/tox.ini @@ -1,10 +1,11 @@ [tox] -envlist = {py35,py36}-1.11.X,{py35,py36}-2.0.X +envlist = {py35,py3,py37}-1.11.X,{py35,py3,py37}-2.0.X,{py35,py3,py37}-2.1.X [testenv] basepython = py35: python3.5 py36: python3.6 + py37: python3.7 deps = -rrequirements.txt commands = {envpython} runtests.py