Skip to content

Commit

Permalink
update versioneer for python 3.12 (closes #37)
Browse files Browse the repository at this point in the history
  • Loading branch information
BerndSchuller committed Oct 27, 2023
1 parent bc67153 commit 9b918cd
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions versioneer.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,9 +336,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) 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 9b918cd

Please sign in to comment.