From c48d96054c82035eebe4a1a2fe100faf049ca016 Mon Sep 17 00:00:00 2001 From: Abhilash Raj Date: Mon, 31 Oct 2022 02:21:04 -0700 Subject: [PATCH] Use Django 4.0.x for now. (#573) * Use Django 4.0.x for now. * Use django 4.0.x for now --- web/Dockerfile | 2 +- web/Dockerfile.dev | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/Dockerfile b/web/Dockerfile index 0f38953f..dc43fb65 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -18,7 +18,7 @@ RUN --mount=type=cache,target=/root/.cache \ && apk add --no-cache --virtual .mailman-rundeps bash sassc \ postgresql-client mysql-client py3-mysqlclient curl mailcap gettext \ python3 py3-pip xapian-core xapian-bindings-python3 libffi pcre-dev py-cryptography \ - && python3 -m pip install -U 'Django<4.2' pip setuptools wheel \ + && python3 -m pip install -U 'Django<4.1' pip setuptools wheel \ && pip install -r /tmp/requirements.txt \ whoosh \ uwsgi \ diff --git a/web/Dockerfile.dev b/web/Dockerfile.dev index 8a1f4661..a87893b5 100644 --- a/web/Dockerfile.dev +++ b/web/Dockerfile.dev @@ -37,7 +37,7 @@ RUN --mount=type=cache,target=/root/.cache \ tzdata \ diskcache \ django-utils-six \ - && python3 -m pip install -U 'Django<4.2' \ + && python3 -m pip install -U 'Django<4.1' \ && python3 -m pip install -U \ git+https://gitlab.com/mailman/django-mailman3 \ && apk del .build-deps \