diff options
author | Tim Orling <ticotimo@gmail.com> | 2021-10-25 22:44:02 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-10-27 09:46:41 +0100 |
commit | 18f933d20d3bb272133ddc8b6abe89572067a86f (patch) | |
tree | 4517d6c8201e58fdaadd8713d5c1fba69d044646 | |
parent | 7d45aa6919c3ae0f345546d1d8f39a1ac2f36855 (diff) | |
download | poky-18f933d20d3bb272133ddc8b6abe89572067a86f.tar.gz |
python3-manifest: -pprint RDEPENDS on -profile
python3-profile includes dataclasses.
pprint imports dataclasses:
https://github.com/python/cpython/blob/3.10/Lib/pprint.py#L38
(From OE-Core rev: 900d7c3a8f68e9ce751a0b5cc839b8838fdebf3f)
Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/python/python3/python3-manifest.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python3/python3-manifest.json b/meta/recipes-devtools/python/python3/python3-manifest.json index d65cf49cb8..2f5dad6486 100644 --- a/meta/recipes-devtools/python/python3/python3-manifest.json +++ b/meta/recipes-devtools/python/python3/python3-manifest.json | |||
@@ -980,7 +980,8 @@ | |||
980 | "pprint": { | 980 | "pprint": { |
981 | "summary": "Python pretty-print support", | 981 | "summary": "Python pretty-print support", |
982 | "rdepends": [ | 982 | "rdepends": [ |
983 | "core" | 983 | "core", |
984 | "profile" | ||
984 | ], | 985 | ], |
985 | "files": [ | 986 | "files": [ |
986 | "${libdir}/python${PYTHON_MAJMIN}/pprint.py" | 987 | "${libdir}/python${PYTHON_MAJMIN}/pprint.py" |