We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In setroubleshoot-3.3.23, lines 41 to 44 of config.py.in contain the lines:
setroubleshoot-3.3.23
try: from configparser import SafeConfigParser except ImportError: from configparser import SafeConfigParser
SafeConfigParser has been depreciated in Python 3.12 as per python/cpython#92503
SafeConfigParser
In testing, I was able to get the package to be built by editing SafeConfigParser to ConfigParser
ConfigParser
System Information:
Arch 6.8.9-hardened1-2 (with SELinux enabled via base-selinux) Python 3.12.3
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In
setroubleshoot-3.3.23
, lines 41 to 44 of config.py.in contain the lines:SafeConfigParser
has been depreciated in Python 3.12 as perpython/cpython#92503
In testing, I was able to get the package to be built by editing
SafeConfigParser
toConfigParser
System Information:
The text was updated successfully, but these errors were encountered: