From a41210226fca8630fc29d11d6900eeecfc3407aa Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Thu, 28 Oct 2021 21:13:42 -0400 Subject: [PATCH] MNT: change from using SafeConfigParser to ConfigParser SafeConfigParser has been deprecated since Python 3.2 and will be removed in py311. https://github.com/python/cpython/pull/28292 https://bugs.python.org/issue45173 --- versioneer.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/versioneer.py b/versioneer.py index 7ed2a21..74bd5c4 100644 --- a/versioneer.py +++ b/versioneer.py @@ -409,9 +409,8 @@ 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() - with open(setup_cfg, "r") as f: - parser.readfp(f) + parser = configparser.ConfigParser() + parser.read(setup_cfg) VCS = parser.get("versioneer", "VCS") # mandatory def get(parser, name):