Stop using deprecated SafeConfigParser by andyfoston · Pull Request #89 · ParallelSSH/ssh-python
From Python 3.2.x until 3.11.x SafeConfigParser has been an alias for ConfigParser, but this has now been removed in Python 3.12.
In order to remain compatible with Python 3.12 onwards, this has now been updated to use ConfigParser.
More information is in: https://docs.python.org/3/whatsnew/changelog.html / python/cpython#92503
Related to: #82