From 5729b116c06db01afc05eec777d7d2cbd2e2eeb0 Mon Sep 17 00:00:00 2001 From: jo Date: Sat, 16 Jul 2022 22:11:43 +0200 Subject: [PATCH] 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. --- playout/requirements.txt | 2 +- playout/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/playout/requirements.txt b/playout/requirements.txt index 61a90e8bf..41c30f231 100644 --- a/playout/requirements.txt +++ b/playout/requirements.txt @@ -2,7 +2,7 @@ # This file is auto-generated by tools/extract_requirements.py. amqplib defusedxml -kombu +kombu==4.6.11 mutagen pytz requests diff --git a/playout/setup.py b/playout/setup.py index e94de12de..502b446ff 100644 --- a/playout/setup.py +++ b/playout/setup.py @@ -32,7 +32,7 @@ setup( install_requires=[ "amqplib", "defusedxml", - "kombu", + "kombu==4.6.11", "mutagen", "pytz", "requests",