diff options
author | Mingli Yu <mingli.yu@windriver.com> | 2020-05-07 14:22:33 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-05-07 17:56:23 -0700 |
commit | 0568dda628fa086aaedfa164c6b12654e09972a3 (patch) | |
tree | cf62144d1e1f6799548eaadb94efc32f04f77716 /meta-python | |
parent | 7aeef522ff3522ccf76a6750846e235e7c80427a (diff) | |
download | meta-openembedded-0568dda628fa086aaedfa164c6b12654e09972a3.tar.gz |
python3-ntplib: add missing python3-io RDEPENDS
Add the missing python3-io RDEPENDS to fix
below error:
# python3
Python 3.8.2 (default, Apr 27 2020, 08:51:00)
[GCC 9.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import ntplib
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib64/python3.8/site-packages/ntplib.py", line 32, in <module>
import socket
ModuleNotFoundError: No module named 'socket'
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-ntplib_0.3.3.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-python/recipes-devtools/python/python3-ntplib_0.3.3.bb b/meta-python/recipes-devtools/python/python3-ntplib_0.3.3.bb index 93df83ad3c..ce2618b817 100644 --- a/meta-python/recipes-devtools/python/python3-ntplib_0.3.3.bb +++ b/meta-python/recipes-devtools/python/python3-ntplib_0.3.3.bb | |||
@@ -11,4 +11,4 @@ S = "${WORKDIR}/${SRCNAME}-${PV}" | |||
11 | 11 | ||
12 | inherit setuptools3 python3native pypi | 12 | inherit setuptools3 python3native pypi |
13 | 13 | ||
14 | RDEPENDS_${PN} += "${PYTHON_PN}-datetime" | 14 | RDEPENDS_${PN} += "${PYTHON_PN}-datetime ${PYTHON_PN}-io" |