From dd08fe3ea37f6947a1660f91f8d1866787317376 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Dec 2021 00:18:21 +0000 Subject: [PATCH] Update django requirement from ~=3.0 to >=3,<5 in /api Updates the requirements on [django](https://github.com/django/django) to permit the latest version. - [Release notes](https://github.com/django/django/releases) - [Commits](https://github.com/django/django/compare/3.0...4.0) --- updated-dependencies: - dependency-name: django dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- api/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/setup.py b/api/setup.py index 3111a64933..7943888064 100644 --- a/api/setup.py +++ b/api/setup.py @@ -27,7 +27,7 @@ }, install_requires=[ "coreapi", - "django~=3.0", + "django>=3,<5", "djangorestframework", "django-filter", "drf-spectacular",