Fixed build issue with Python 3.12
This commit is contained in:
parent
245b84526e
commit
804509aff9
@ -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
|
||||||
---------------
|
---------------
|
||||||
|
@ -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):
|
||||||
|
Loading…
Reference in New Issue
Block a user