Skip to content

Commit

Permalink
Switch from SafeConfigParser to ConfigParser class
Browse files Browse the repository at this point in the history
SafeConfigParser has been deprecated since Python 3.2 and was removed
in Python 3.12 entirely.
Per the release notes [1] it is recommended to use the ConfigParser
class now.

[1] - https://docs.python.org/3.12/whatsnew/3.12.html#configparser
  • Loading branch information
JacobCallahan committed Oct 3, 2023
1 parent 692bbbf commit cc6c84d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion versioneer.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ def get_config_from_root(root):
# configparser.NoOptionError (if it lacks "VCS="). See the docstring at
# the top of versioneer.py for instructions on writing your setup.cfg .
setup_cfg = os.path.join(root, "setup.cfg")
parser = configparser.SafeConfigParser()
parser = configparser.ConfigParser()
with open(setup_cfg, "r") as f:
parser.readfp(f)
VCS = parser.get("versioneer", "VCS") # mandatory
Expand Down

0 comments on commit cc6c84d

Please sign in to comment.