From a69a48ddcecbdcf1bb89d3c3f49638d5fed5749f Mon Sep 17 00:00:00 2001 From: Eberhard Beilharz Date: Mon, 24 Aug 2020 20:03:18 +0200 Subject: [PATCH] fix(linux): Add missing Python dependencies Previously these dependencies were defined in setup.py, but now that we don't use setup.py during packaging we have to define them as build dependencies in `control`, otherwise the package build will show missing module errors on Sentry. --- linux/keyman-config/debian/control | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/linux/keyman-config/debian/control b/linux/keyman-config/debian/control index 95387906f0..45479b1eb3 100644 --- a/linux/keyman-config/debian/control +++ b/linux/keyman-config/debian/control @@ -4,7 +4,8 @@ Section: python Priority: optional Build-Depends: dh-python, debhelper (>= 9), bash-completion, help2man, python3-all (>= 3.5), python3-setuptools, - python3-pip, python3-magic, + python3-pip, python3-magic, python3-lxml, python3-numpy, + python3-pil, python3-requests, python3-requests-cache, python3-qrcode , python-qrcode , python3-sentry-sdk ,