Skip to content

Commit

Permalink
MNT: adapt versioneer for py311
Browse files Browse the repository at this point in the history
  • Loading branch information
tacaswell committed Oct 27, 2021
1 parent c03c713 commit 7dcce7a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions versioneer.py
Expand Up @@ -339,9 +339,9 @@ 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):
Expand Down

0 comments on commit 7dcce7a

Please sign in to comment.