Skip to content

Commit f57d02c

Browse files
committed
Requirements: downgrade redis to 3.5.3
It seems that new pip version complains about this error now and breaks the installation process. We are pinning to the latest 3.x version of redis for now. I think we can upgrade the django-redis-cache version once we are on Django 3.2.x
1 parent 6169f3f commit f57d02c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

requirements/pip.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,11 @@ pyyaml==5.4.1 # pyup: ignore
3131
Pygments==2.10.0
3232

3333
# Basic tools
34-
redis==4.1.0
34+
35+
# Downgrade redis to 3.5.3 (latest 3.x release) because pip raises this error:
36+
# django-redis-cache 2.1.3 depends on redis<4.0
37+
redis==3.5.3
38+
3539
kombu==5.2.2
3640
celery==5.2.2
3741

0 commit comments

Comments
 (0)