chore(playout): pin kombu version to 4.6.11

This forces to use the same version as the worker.
Previously playout installed kombu>=5.2 and got instanlty
reverted back to 4.6.11 when the worker was installed.
This commit is contained in:
jo 2022-07-16 22:11:43 +02:00 committed by Kyle Robbertze
parent 80218f33eb
commit 5729b116c0
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
# This file is auto-generated by tools/extract_requirements.py. # This file is auto-generated by tools/extract_requirements.py.
amqplib amqplib
defusedxml defusedxml
kombu kombu==4.6.11
mutagen mutagen
pytz pytz
requests requests

View File

@ -32,7 +32,7 @@ setup(
install_requires=[ install_requires=[
"amqplib", "amqplib",
"defusedxml", "defusedxml",
"kombu", "kombu==4.6.11",
"mutagen", "mutagen",
"pytz", "pytz",
"requests", "requests",