From b11b906497f8522b6e99e807bf6a76cd21adf9d5 Mon Sep 17 00:00:00 2001 From: tcely Date: Fri, 21 Feb 2025 07:30:26 -0500 Subject: [PATCH 1/3] Pin `django-background-tasks` It's `django-background-tasks` that limits the Django version. --- Pipfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Pipfile b/Pipfile index af67a7a1..304c6e0b 100644 --- a/Pipfile +++ b/Pipfile @@ -7,7 +7,7 @@ verify_ssl = true autopep8 = "*" [packages] -django = "~=3.2" +django = "*" django-sass-processor = "*" libsass = "*" pillow = "*" @@ -15,7 +15,7 @@ whitenoise = "*" gunicorn = "*" django-compressor = "*" httptools = "*" -django-background-tasks = "*" +django-background-tasks = "1.2.5" django-basicauth = "*" psycopg2-binary = "*" mysqlclient = "*" From c9bc7bf84e86cfe17d57563c2c2f52291b59f80b Mon Sep 17 00:00:00 2001 From: tcely Date: Fri, 21 Feb 2025 07:44:20 -0500 Subject: [PATCH 2/3] Correct the syntax --- Pipfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pipfile b/Pipfile index 304c6e0b..abbe48b9 100644 --- a/Pipfile +++ b/Pipfile @@ -15,7 +15,7 @@ whitenoise = "*" gunicorn = "*" django-compressor = "*" httptools = "*" -django-background-tasks = "1.2.5" +django-background-tasks = "==1.2.5" django-basicauth = "*" psycopg2-binary = "*" mysqlclient = "*" From 11190ada2ddd5721d88be2c217ecf43a17e6da83 Mon Sep 17 00:00:00 2001 From: tcely Date: Sat, 22 Feb 2025 08:25:32 -0500 Subject: [PATCH 3/3] We still need to pin django also --- Pipfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pipfile b/Pipfile index abbe48b9..00389093 100644 --- a/Pipfile +++ b/Pipfile @@ -7,7 +7,7 @@ verify_ssl = true autopep8 = "*" [packages] -django = "*" +django = "~=3.2" django-sass-processor = "*" libsass = "*" pillow = "*"