From de49c8e61f860954e989b6ecff82cac549448840 Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Thu, 28 Oct 2021 21:18:13 -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 c010f63..5db821a 100644 --- a/versioneer.py +++ b/versioneer.py @@ -396,9 +396,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):