Skip to content

Commit

Permalink
fix: fix versioneer
Browse files Browse the repository at this point in the history
  • Loading branch information
hbredin committed Apr 5, 2024
1 parent d872def commit 1d90b22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion versioneer.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def get_config_from_root(root):
setup_cfg = os.path.join(root, "setup.cfg")
parser = configparser.ConfigParser()
with open(setup_cfg, "r") as f:
parser.readfp(f)
parser.read_file(f)
VCS = parser.get("versioneer", "VCS") # mandatory

def get(parser, name):
Expand Down

0 comments on commit 1d90b22

Please sign in to comment.