From 71c57e0ebd51c80dcd83e71f0377336ff1500f16 Mon Sep 17 00:00:00 2001 From: Brian Rutledge Date: Tue, 28 Apr 2020 10:49:53 -0400 Subject: [PATCH] Fix tox django factors I noticed this discrepancy while attempting to determine compatibility of versions of django-model-utils and Django. I haven't tested it locally, because I'm getting `psycopg2.OperationalError: could not connect to server`. --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 891e7ef..5deae77 100644 --- a/tox.ini +++ b/tox.ini @@ -5,8 +5,8 @@ envlist = [testenv] deps = - django202: Django==2.2.* - django201: Django==2.1.* + django22: Django==2.2.* + django21: Django==2.1.* django30: Django==3.0.* djangotrunk: https://github.com/django/django/archive/master.tar.gz freezegun == 0.3.12