From 17daeebd25f2e1343f661da81986dedaa4d81ef7 Mon Sep 17 00:00:00 2001 From: Kyle Robbertze Date: Wed, 17 Nov 2021 09:34:46 +0200 Subject: [PATCH] fix: assume api client is installed Until pip out-of-tree dependencies work with our setup and we can update to newer versions of our dependencies, assume api client is installed without explicitly adding it as a dependency. The install script installs api_client anyway Fixes: #1435 --- playout/setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/playout/setup.py b/playout/setup.py index d7837be1f..24abe51ad 100644 --- a/playout/setup.py +++ b/playout/setup.py @@ -34,7 +34,6 @@ setup( }, python_requires=">=3.6", install_requires=[ - f"libretime-api-client @ file://localhost/{here.parent}/api_client#egg=libretime-api-client", "amqplib", "configobj", "defusedxml",