From f27ec8cd89570dbf1dd2cb53686c9188347b9413 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Tue, 16 Oct 2018 15:34:13 -0400 Subject: [PATCH] Update Django version in version check. --- awx/wsgi.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/awx/wsgi.py b/awx/wsgi.py index d351fed217..66bd331b90 100644 --- a/awx/wsgi.py +++ b/awx/wsgi.py @@ -41,10 +41,10 @@ if social_django.__version__ != '2.1.0': still works".format(social_django.__version__)) -if django.__version__ != '1.11.11': - raise RuntimeError("Django version other than 1.11.11 detected {}. \ +if django.__version__ != '1.11.16': + raise RuntimeError("Django version other than 1.11.16 detected {}. \ Inherit from WSGIHandler to support short-circuit Django Middleware. \ - This is known to work for Django 1.11.11 and may not work with other, \ + This is known to work for Django 1.11.16 and may not work with other, \ even minor, versions.".format(django.__version__))