From a053f570de1504f0bd9656529646d414f16b4aa8 Mon Sep 17 00:00:00 2001 From: Abhilash Raj Date: Sun, 17 Feb 2019 13:02:56 -0800 Subject: [PATCH] Bump versions of Postorius to latest and fix urls.py --- postorius/Dockerfile | 4 ++-- postorius/mailman-web/urls.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/postorius/Dockerfile b/postorius/Dockerfile index 6357a3b..6f5050e 100644 --- a/postorius/Dockerfile +++ b/postorius/Dockerfile @@ -15,8 +15,8 @@ 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>=1.11 pip \ - && pip install postorius==1.2.0a1 \ + && pip install -U Django==2.1.5 pip \ + && pip install postorius==1.2.3 \ uwsgi \ psycopg2 \ dj-database-url \ diff --git a/postorius/mailman-web/urls.py b/postorius/mailman-web/urls.py index e7bb6be..804b9e3 100644 --- a/postorius/mailman-web/urls.py +++ b/postorius/mailman-web/urls.py @@ -30,5 +30,5 @@ urlpatterns = [ url(r'', include('django_mailman3.urls')), url(r'^accounts/', include('allauth.urls')), # Django admin - url(r'^admin/', include(admin.site.urls)), + url(r'^admin/', admin.site.urls), ]