Skip to content

Commit

Permalink
fix(req.txt): Update kombu and django-extensions
Browse files Browse the repository at this point in the history
Django Extensions was failing on our version of Django and had to be
updated.

Kombu is a different, darker story. The reason it needs to be changed is
because we didn't previously have it in place, and instead relied on
celery to get us the right version. However, for no apparent reason,
celery recently started requiring a more recent version of kombu. That
version, it turns out crashed, with this bug:

celery/kombu#1063

So...we had to specify which version of kombu we wanted, and that's what
we do here. Ugh.
  • Loading branch information
mlissner committed Oct 25, 2019
1 parent 378b924 commit cf15ffe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ disposable-email-domains
Django~=1.11.0
django-cors-headers~=2.5
django-debug-toolbar==1.3.2
django-extensions==1.6.1
django-extensions~=2.2.0
django-filter==1.1
django-localflavor==1.1
django-mathfilters
Expand Down Expand Up @@ -49,7 +49,7 @@ itypes==1.1.0
# Kombu 4.6.5 is bad, and its authors should feel bad. Pin Kombu at a lower
# version, which actually should work. See:
# https://github.com/celery/kombu/issues/1063
kombu==4.5.0
kombu==4.6.4
logilab-common==0.63.2
lxml==3.5.0
Markdown~=2.6
Expand Down

0 comments on commit cf15ffe

Please sign in to comment.