From 10e169739d6b4250a33ef4a2d1bf3ead21419691 Mon Sep 17 00:00:00 2001 From: Eberhard Beilharz Date: Tue, 18 Jan 2022 16:40:20 +0100 Subject: [PATCH] fix(linux): Add workaround for Python bug This works around a Python bug introduced in Python 3.10.2 and 3.9.10 (https://github.com/python-attrs/cattrs/issues/206). This change should be reverted once that bug is fixed and new Python packages are available in Debian/Ubuntu. Fixes #6119. --- linux/debian/control | 3 +++ 1 file changed, 3 insertions(+) diff --git a/linux/debian/control b/linux/debian/control index e24a4e74259..74394fe2a22 100644 --- a/linux/debian/control +++ b/linux/debian/control @@ -14,6 +14,9 @@ Build-Depends: liblocale-gettext-perl, perl, python3-all (>= 3.5), + python3-all (<< 3.9.10) | python3-all (>= 3.10), + python3-all (<< 3.10.2), + python3.6 | python3.8 | python3.9 (<< 3.9.10) | python3.10 (<< 3.10.2), python3-dbus, python3-gi, python3-lxml,