]> git.dujemihanovic.xyz Git - u-boot.git/commit
tools: buildman: fix non-existing SafeConfigParser in Python 3.12+
authorQuentin Schulz <quentin.schulz@theobroma-systems.com>
Tue, 23 Jan 2024 17:57:01 +0000 (18:57 +0100)
committerTom Rini <trini@konsulko.com>
Mon, 29 Jan 2024 19:54:15 +0000 (14:54 -0500)
commit341e8a6c7c09112a872d19f855fefa671df40eb7
tree07dc10884a715bbbd012a3b4b5ef6688a10e45e5
parent24adbee344b2d6e8342f41928c82719187dbce09
tools: buildman: fix non-existing SafeConfigParser in Python 3.12+

SafeConfigParser was renamed back in Python 3.2 (yes, no typo) to
ConfigParser[1], but it was still working as an alias until it got
removed in 3.12[2].

[1] https://docs.python.org/3.8/whatsnew/3.2.html#configparser
[2] https://github.com/python/cpython/pull/92503

Cc: Quentin Schulz <foss+uboot@0leil.net>
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
tools/buildman/bsettings.py