From 7457a29e7fca2e2fad449bc1a8106258117ae22b Mon Sep 17 00:00:00 2001 From: jo Date: Sat, 18 Jun 2022 11:41:56 +0200 Subject: [PATCH] chore(api): pin django related packages --- api/requirements.txt | 6 +++--- api/setup.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/api/requirements.txt b/api/requirements.txt index a8d4532c2..8fb78b937 100644 --- a/api/requirements.txt +++ b/api/requirements.txt @@ -1,9 +1,9 @@ # This file is auto-generated by tools/extract-requirements.sh. # Please do not edit this file, edit the setup.py file! -coreapi +coreapi~=2.3.3 django~=3.2.13 django-filter~=21.1.0 -djangorestframework -drf-spectacular +djangorestframework~=3.13.1 +drf-spectacular~=0.22.1 markdown psycopg2 diff --git a/api/setup.py b/api/setup.py index 66320dea1..85f1f26cb 100644 --- a/api/setup.py +++ b/api/setup.py @@ -32,11 +32,11 @@ setup( ] }, install_requires=[ - "coreapi", + "coreapi~=2.3.3", "django~=3.2.13", - "djangorestframework", + "djangorestframework~=3.13.1", "django-filter~=21.1.0", - "drf-spectacular", + "drf-spectacular~=0.22.1", "markdown", ], extras_require={