summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2024-01-23 20:25:28 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-01-24 15:46:19 +0000
commit754d0c606ec3019d36ef92dffae79f81cc2bc1b6 (patch)
tree644e4b203fae62b4d895b7d380bde66ed0784786
parentbf9ac22f4132fd2f2739c5c77a9bf523fbc9b58e (diff)
downloadpoky-754d0c606ec3019d36ef92dffae79f81cc2bc1b6.tar.gz
python3-subunit: Add missing module dependency
In version 1.4.3: * Subunit now has a dependency on an external iso8601 module rather than shipping its own. so add the missing dependency. (From OE-Core rev: 14ee3e1240524e08adc1a3327dfb52dee6e64fd2) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/python/python3-subunit_1.4.4.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python3-subunit_1.4.4.bb b/meta/recipes-devtools/python/python3-subunit_1.4.4.bb
index db5fecf921..11be10bab6 100644
--- a/meta/recipes-devtools/python/python3-subunit_1.4.4.bb
+++ b/meta/recipes-devtools/python/python3-subunit_1.4.4.bb
@@ -10,6 +10,6 @@ SRC_URI[sha256sum] = "1079363131aa1d3f45259237265bc2e61a77e35f20edfb6e3d1d2558a2
10 10
11inherit pypi setuptools3 11inherit pypi setuptools3
12 12
13RDEPENDS:${PN} = " python3-testtools" 13RDEPENDS:${PN} = " python3-testtools python3-iso8601"
14 14
15BBCLASSEXTEND = "nativesdk" 15BBCLASSEXTEND = "nativesdk"