diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2019-09-03 12:13:00 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-09-06 08:15:45 +0100 |
commit | 1a4eb65982c5671f7a32a923916e2e5e035b3d2b (patch) | |
tree | 4e25940f1e7b25bf9b9d4854eb77aea1bc83d4ae /meta/recipes-devtools | |
parent | f1c4a5a9d14a0700fa6647ffa1b5d46d9319cfc9 (diff) | |
download | poky-1a4eb65982c5671f7a32a923916e2e5e035b3d2b.tar.gz |
python-numpy: rdepend on multiprocessing module
`import numpy.distutils' gives people the following error.
ModuleNotFoundError: No module named 'multiprocessing'
Fix it by adding multiprocessing dependency.
(From OE-Core rev: 08198d658b3617ba5e124f82540eba5e41fdad6c)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/python-numpy/python-numpy.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python-numpy/python-numpy.inc b/meta/recipes-devtools/python-numpy/python-numpy.inc index 1c6047ab07..a12e72f964 100644 --- a/meta/recipes-devtools/python-numpy/python-numpy.inc +++ b/meta/recipes-devtools/python-numpy/python-numpy.inc | |||
@@ -113,6 +113,7 @@ RDEPENDS_${PN} = "${PYTHON_PN}-unittest \ | |||
113 | ${PYTHON_PN}-compression \ | 113 | ${PYTHON_PN}-compression \ |
114 | ${PYTHON_PN}-ctypes \ | 114 | ${PYTHON_PN}-ctypes \ |
115 | ${PYTHON_PN}-threading \ | 115 | ${PYTHON_PN}-threading \ |
116 | ${PYTHON_PN}-multiprocessing \ | ||
116 | " | 117 | " |
117 | 118 | ||
118 | RDEPENDS_${PN}_class-native = "" | 119 | RDEPENDS_${PN}_class-native = "" |