From 4127fa5750ee8fc426bce98352a769e435890eaa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Mar 2022 21:02:33 +0000 Subject: [PATCH] chore: update django requirement from ~=3.0 to ~=4.0 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.3) --- updated-dependencies: - dependency-name: django dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- api/requirements.txt | 2 +- api/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api/requirements.txt b/api/requirements.txt index d7abf1d957..16a0aa41c3 100644 --- a/api/requirements.txt +++ b/api/requirements.txt @@ -1,7 +1,7 @@ # This file is auto-generated by tools/extract-requirements.sh. # Please do not edit this file, edit the setup.py file! coreapi -django~=3.0 +django~=4.0 django-filter djangorestframework drf-spectacular diff --git a/api/setup.py b/api/setup.py index 77665173f4..046dfe38ec 100644 --- a/api/setup.py +++ b/api/setup.py @@ -30,7 +30,7 @@ }, install_requires=[ "coreapi", - "django~=3.0", + "django>=3,<5", "djangorestframework", "django-filter", "drf-spectacular",