Skip to content

Commit 97bbf84

Browse files
committed
Revert "Update celery requirements to its latest version"
This reverts commit 5939bca. We noticed a lot of strange issues, including Celery dying without an error, using the upgraded packages and even 4.4.0. Reverting back to something that works for now.
1 parent 30c06c0 commit 97bbf84

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

requirements/pip.txt

+9-3
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,15 @@ pyyaml==5.1.2
3030
Pygments==2.4.2
3131

3232
# Basic tools
33-
redis==3.3.11
34-
kombu==4.6.7
35-
celery==4.3.0
33+
# Redis 3.x has an incompatible change and fails
34+
# https://stackoverflow.com/questions/53331405/django-compress-error-invalid-input-of-type-cachekey
35+
# https://github.com/sebleier/django-redis-cache/pull/162
36+
redis==2.10.6 # pyup: ignore
37+
# Kombu >4.3 requires redis>=3.2
38+
kombu==4.3.0 # pyup: ignore
39+
# Celery 4.2 is incompatible with our code
40+
# when ALWAYS_EAGER = True
41+
celery==4.1.1 # pyup: ignore
3642

3743
django-allauth==0.40.0
3844

0 commit comments

Comments
 (0)