Bump Django dependency to the latest available (#243)

* Bump Django dependency to the latest available

Fixes #242

* Use the new django.urls API
This commit is contained in:
Abhilash Raj
2018-05-28 15:50:27 -07:00
committed by GitHub
parent bbb3030359
commit 512f29f0ba
2 changed files with 2 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ RUN set -ex \
psycopg2 \
dj-database-url \
mysqlclient \
&& pip install -U django==1.10 \
&& pip install -U django>=1.11\
&& apk del .build-deps \
&& addgroup -S mailman \
&& adduser -S -G mailman mailman \

View File

@@ -19,7 +19,7 @@
from django.conf.urls import include, url
from django.contrib import admin
from django.core.urlresolvers import reverse_lazy
from django.urls import reverse_lazy
from django.views.generic import RedirectView
urlpatterns = [