From 7ec61d6f458ba7b935a1077c85c071b0db6233fe Mon Sep 17 00:00:00 2001 From: Abhilash Raj Date: Wed, 16 May 2018 19:17:07 -0700 Subject: [PATCH] Update minimum version of django-mailman3 (#240) * Use the latest django-mailman3 that supports Python 3. --- postorius/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/postorius/Dockerfile b/postorius/Dockerfile index be7e409..fb619d4 100644 --- a/postorius/Dockerfile +++ b/postorius/Dockerfile @@ -15,9 +15,9 @@ RUN set -ex \ postgresql-dev mariadb-dev \ && apk add --no-cache --virtual .mailman-rundeps bash \ postgresql-client mysql-client py-mysqldb curl mailcap \ - && pip install -U django>=2.0 pip \ - && pip install \ - postorius>=1.2.0a1 \ + && pip install -U Django>=1.11 pip \ + && pip install postorius>=1.2.0a1 \ + django-mailman3>=1.2.0a2 \ uwsgi \ psycopg2 \ dj-database-url \