diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2021-09-16 22:22:33 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-09-17 07:26:23 +0100 |
| commit | 5c24982cc935488535251237f9e2fd097a134112 (patch) | |
| tree | b27d8cd8c92cf98ee22d4c7b3f32d17bad9ef227 /bitbake/lib/bb/data_smart.py | |
| parent | 3891a56a78c78e6c5fb36431a0f15e7085aa9275 (diff) | |
| download | poky-5c24982cc935488535251237f9e2fd097a134112.tar.gz | |
bitbake: bitbake: correct the collections vs collections.abc deprecation
This becomes a hard error in python 3.10.
(Bitbake rev: ae219e1f7460077f4492b31ac91cef4cf9b17277)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
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 e4afac64b2..73e33ee10e 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 |
