diff options
| author | Ben Powell <ben_powell@trimble.com> | 2022-06-14 13:41:31 -0600 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2022-06-30 13:39:28 -0400 |
| commit | 3c7b2d5ae2186e4542e2ff9d84c9cba126d77d40 (patch) | |
| tree | 51afe372fef797152294bb9a642fd966735e639c /meta-python | |
| parent | d55cc1d3f9cf5fd6eaf5440874f0cd0b3b95790c (diff) | |
| download | meta-openembedded-3c7b2d5ae2186e4542e2ff9d84c9cba126d77d40.tar.gz | |
python3-can: Add typing-extensions dependency
The python-can 4.0.0 release introduced a dependency on the
typing_extensions module:
$ python3
Python 3.8.10 (default, Mar 15 2022, 12:22:08)
[GCC 9.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import can
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "python-can/can/__init__.py", line 17, in <module>
from .listener import Listener, BufferedReader, RedirectReader, AsyncBufferedReader
File "python-can/can/listener.py", line 12, in <module>
from can.message import Message
File "python-can/can/message.py", line 11, in <module>
from . import typechecking
File "python-can/can/typechecking.py", line 9, in <module>
import typing_extensions
ModuleNotFoundError: No module named 'typing_extensions'
Signed-off-by: Ben Powell <ben_powell@trimble.com>
Signed-off-by: Theodore A. Roth <theodore_roth@trimble.com>
Signed-off-by: Theodore A. Roth <troth@openavr.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-can_4.0.0.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-can_4.0.0.bb b/meta-python/recipes-devtools/python/python3-can_4.0.0.bb index 2cd2e624b9..b1ba6849be 100644 --- a/meta-python/recipes-devtools/python/python3-can_4.0.0.bb +++ b/meta-python/recipes-devtools/python/python3-can_4.0.0.bb | |||
| @@ -21,6 +21,7 @@ RDEPENDS:${PN}:class-target += "\ | |||
| 21 | ${PYTHON_PN}-sqlite3 \ | 21 | ${PYTHON_PN}-sqlite3 \ |
| 22 | ${PYTHON_PN}-wrapt \ | 22 | ${PYTHON_PN}-wrapt \ |
| 23 | ${PYTHON_PN}-pkg-resources \ | 23 | ${PYTHON_PN}-pkg-resources \ |
| 24 | ${PYTHON_PN}-typing-extensions \ | ||
| 24 | " | 25 | " |
| 25 | 26 | ||
| 26 | BBCLASSEXTEND = "native nativesdk" | 27 | BBCLASSEXTEND = "native nativesdk" |
