replace SafeConfigParser() with ConfigParser() in versioneer.py

This commit is contained in:
clore 2024-04-30 13:46:21 +00:00
parent c36dca841b
commit 0729d41628
1 changed files with 1 additions and 1 deletions

View File

@ -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