From 052014f6adbfc106708096c51f541019f89e9c73 Mon Sep 17 00:00:00 2001 From: Raphael Lullis Date: Wed, 29 Jan 2025 14:39:53 +0100 Subject: [PATCH 1/2] Fix range of allowed django versions Running `docker-compose build` fails at the moment due to a package resolution conflict. Allowing to use django 4.2 solves the issue. --- tests/app/idp/requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/app/idp/requirements.txt b/tests/app/idp/requirements.txt index ba8e75052..24e11a76c 100644 --- a/tests/app/idp/requirements.txt +++ b/tests/app/idp/requirements.txt @@ -1,5 +1,5 @@ -Django>=3.2,<4.2 +Django>=3.2,<=4.2 django-cors-headers==3.14.0 django-environ==0.11.2 --e ../../../ \ No newline at end of file +-e ../../../ From e995743a4d43145f23f91c665172eba7129c6958 Mon Sep 17 00:00:00 2001 From: Raphael Lullis Date: Wed, 29 Jan 2025 15:34:51 +0100 Subject: [PATCH 2/2] Update tests/app/idp/requirements.txt Co-authored-by: Alan Crosswell --- tests/app/idp/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/idp/requirements.txt b/tests/app/idp/requirements.txt index 24e11a76c..ec77fcf9d 100644 --- a/tests/app/idp/requirements.txt +++ b/tests/app/idp/requirements.txt @@ -1,4 +1,4 @@ -Django>=3.2,<=4.2 +Django>=4.2,<=5.1 django-cors-headers==3.14.0 django-environ==0.11.2