Skip to content

Commit

Permalink
fix versioneer for python3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
pbsds committed Jan 14, 2024
1 parent f136294 commit 84d597b
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions versioneer.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,9 +339,15 @@ 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()
if hasattr(configparser, "SafeConfigParser"):
parser = configparser.SafeConfigParser()
else: # SafeConfigParser was removed in python 3.12 as per https://github.com/python/cpython/issues/89336
parser = configparser.ConfigParser()
with open(setup_cfg, "r") as f:
parser.readfp(f)
if hasattr(parser, "readfp"):
parser.readfp(f)
else: # readfp was removed in python 3.12 as per https://github.com/python/cpython/issues/89336
parser.read_file(f)
VCS = parser.get("versioneer", "VCS") # mandatory

def get(parser, name):
Expand Down

0 comments on commit 84d597b

Please sign in to comment.