Fixed build issue with Python 3.12

This commit is contained in:
Sebastian Messmer 2023-07-13 19:29:54 -07:00
parent 245b84526e
commit 804509aff9
2 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,7 @@
Version 0.11.4 (unreleased) Version 0.11.4 (unreleased)
--------------- ---------------
* Fixed build issue with GCC 13 (see https://github.com/cryfs/cryfs/pull/448 ) * Fixed build issue with GCC 13 (see https://github.com/cryfs/cryfs/pull/448 )
* Fixed build issue with Python 3.12 (see https://github.com/cryfs/cryfs/issues/459 )
Version 0.11.3 Version 0.11.3
--------------- ---------------

View File

@ -406,9 +406,9 @@ def get_config_from_root(root):
# configparser.NoOptionError (if it lacks "VCS="). See the docstring at # configparser.NoOptionError (if it lacks "VCS="). See the docstring at
# the top of versioneer.py for instructions on writing your setup.cfg . # the top of versioneer.py for instructions on writing your setup.cfg .
setup_cfg = os.path.join(root, "setup.cfg") setup_cfg = os.path.join(root, "setup.cfg")
parser = configparser.SafeConfigParser() parser = configparser.ConfigParser()
with open(setup_cfg, "r") as f: with open(setup_cfg, "r") as f:
parser.readfp(f) parser.read_file(f)
VCS = parser.get("versioneer", "VCS") # mandatory VCS = parser.get("versioneer", "VCS") # mandatory
def get(parser, name): def get(parser, name):