Skip to content

Commit

Permalink
Issue #81 try hacking versioneer
Browse files Browse the repository at this point in the history
  • Loading branch information
thompson318 committed Feb 21, 2024
1 parent cad9ae0 commit 925696f
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 @@ -339,7 +339,7 @@ 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()
parser = configparser.RawConfigParser()
with open(setup_cfg, "r") as f:
parser.readfp(f)
VCS = parser.get("versioneer", "VCS") # mandatory
Expand Down

0 comments on commit 925696f

Please sign in to comment.