From 93994a1952a637e77dd784a793b48e0e2b0765f2 Mon Sep 17 00:00:00 2001 From: Marti Raudsepp Date: Tue, 9 Apr 2024 12:33:03 +0300 Subject: [PATCH] CI: Update Django 4.2 version used for test suite (#2049) Django 4.2.7 was used when testing with Python versions 3.9 and 3.8. Updated to 4.2.11. Solves security advisory https://github.com/typeddjango/django-stubs/security/dependabot/6 (though the vulnerability has 0 impact for us) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 190925e96..35532ce2c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,7 +8,7 @@ pytest-shard==0.1.2 # Django deps: psycopg2-binary -Django==4.2.7; python_version < '3.10' +Django==4.2.11; python_version < '3.10' Django==5.0.4; python_version >= '3.10' -e ./ext -e .[redis,compatible-mypy]