diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2021-10-19 10:06:10 -1000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-10-23 17:47:38 +0100 |
| commit | 3e3434ee1022158a397af870090151e9988a9e9b (patch) | |
| tree | a5fbdf70abedd3ec6ff4b852c01ef8c6869c4a7c /bitbake/lib/bb/data_smart.py | |
| parent | c35f34361e94a81660c6e1f59d770f8a165e7f53 (diff) | |
| download | poky-3e3434ee1022158a397af870090151e9988a9e9b.tar.gz | |
bitbake: bitbake: correct the collections vs collections.abc deprecation
This becomes a hard error in python 3.10.
(Bitbake rev: 4b66d498eab22eca29c9e3a7fdfa5c6e54055e78)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit ae219e1f7460077f4492b31ac91cef4cf9b17277)
Signed-off-by: Justin Bronder <jsbronder@cold-front.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/data_smart.py')
| -rw-r--r-- | bitbake/lib/bb/data_smart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py index 68770832e0..c8d2a43724 100644 --- a/bitbake/lib/bb/data_smart.py +++ b/bitbake/lib/bb/data_smart.py | |||
| @@ -17,7 +17,7 @@ BitBake build tools. | |||
| 17 | # Based on functions from the base bb module, Copyright 2003 Holger Schurig | 17 | # Based on functions from the base bb module, Copyright 2003 Holger Schurig |
| 18 | 18 | ||
| 19 | import copy, re, sys, traceback | 19 | import copy, re, sys, traceback |
| 20 | from collections import MutableMapping | 20 | from collections.abc import MutableMapping |
| 21 | import logging | 21 | import logging |
| 22 | import hashlib | 22 | import hashlib |
| 23 | import bb, bb.codeparser | 23 | import bb, bb.codeparser |
