mbridon opened a new issue, #1855: URL: https://github.com/apache/buildstream/issues/1855
Buildstream can't build with Python 3.12. Python 3.12 deprecated a few things, among which is `configparser.SafeConfigParser`. https://docs.python.org/3.12/whatsnew/3.12.html#removed Pretty sure the `versioneer.py` script could instead say something like : ``` setup_cfg = os.path.join(root, "setup.cfg") try; if sys.version_info.major == 3 and sys.version_info.minor >= 12: from configparser import ConfigParser else: from configparser import SafeConfigParser as ConfigParser ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
