diff options
author | Yi Zhao <yi.zhao@windriver.com> | 2021-11-14 13:15:56 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-11-15 12:55:27 +0000 |
commit | d3a5074c67ba947e373714b2e3ff892d09e28290 (patch) | |
tree | 78d637d1a32c73cd58b89a0bb6aaf7a00b574823 /meta/recipes-devtools/python | |
parent | a6757e4a5272b97b144dd474d71a290dba77925b (diff) | |
download | poky-d3a5074c67ba947e373714b2e3ff892d09e28290.tar.gz |
python3-numpy: add python3-json to RDEPENDS
Fixes:
$ python3
>>> import numpy
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python3.10/site-packages/numpy/__init__.py", line 138, in <module>
from ._version import get_versions
File "/usr/lib/python3.10/site-packages/numpy/_version.py", line 7, in <module>
import json
ModuleNotFoundError: No module named 'json'
>>>
(From OE-Core rev: 1b762dc1e3a91884ce649504da787266fc53e928)
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python')
-rw-r--r-- | meta/recipes-devtools/python/python3-numpy_1.21.4.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-numpy_1.21.4.bb b/meta/recipes-devtools/python/python3-numpy_1.21.4.bb index 8988a5bc39..a3ea4ab5aa 100644 --- a/meta/recipes-devtools/python/python3-numpy_1.21.4.bb +++ b/meta/recipes-devtools/python/python3-numpy_1.21.4.bb | |||
@@ -47,6 +47,7 @@ RDEPENDS:${PN} = "${PYTHON_PN}-unittest \ | |||
47 | ${PYTHON_PN}-ctypes \ | 47 | ${PYTHON_PN}-ctypes \ |
48 | ${PYTHON_PN}-threading \ | 48 | ${PYTHON_PN}-threading \ |
49 | ${PYTHON_PN}-multiprocessing \ | 49 | ${PYTHON_PN}-multiprocessing \ |
50 | ${PYTHON_PN}-json \ | ||
50 | " | 51 | " |
51 | RDEPENDS:${PN}-ptest += "${PYTHON_PN}-pytest \ | 52 | RDEPENDS:${PN}-ptest += "${PYTHON_PN}-pytest \ |
52 | ${PYTHON_PN}-hypothesis \ | 53 | ${PYTHON_PN}-hypothesis \ |