diff mbox series

[meta-python,2/2] python3-txdbus: add missing RDEPENDS

Message ID 20260324200022.3831228-2-skandigraun@gmail.com
State Under Review
Headers show
Series [meta-python,1/2] python3-zopeinterface: upgrade 7.1.1 -> 8.2 | expand

Commit Message

Gyorgy Sarvari March 24, 2026, 8 p.m. UTC
This module depends on python3-six, otherwise it errors out:

>>> from txdbus.interface import DBusInterface, Method, Signal
Traceback (most recent call last):
  File "<python-input-1>", line 1, in <module>
    from txdbus.interface import DBusInterface, Method, Signal
  File "/usr/lib/python3.14/site-packages/txdbus/interface.py", line 8, in <module>
    import six
ModuleNotFoundError: No module named 'six'

Add the missing dependency.

Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
---
 meta-python/recipes-devtools/python/python3-txdbus_1.1.2.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta-python/recipes-devtools/python/python3-txdbus_1.1.2.bb b/meta-python/recipes-devtools/python/python3-txdbus_1.1.2.bb
index 01c069291c..ef6c248e80 100644
--- a/meta-python/recipes-devtools/python/python3-txdbus_1.1.2.bb
+++ b/meta-python/recipes-devtools/python/python3-txdbus_1.1.2.bb
@@ -8,4 +8,4 @@  SRC_URI[sha256sum] = "8375a5fb68a12054f0def91af800c821fb2232949337756ed975f88d8e
 
 inherit pypi setuptools3
 
-RDEPENDS:${PN} += "python3-twisted-core"
+RDEPENDS:${PN} += "python3-twisted-core python3-six"