forked from pool/python-crochet
26 lines
966 B
Diff
26 lines
966 B
Diff
|
|
From a36d05f9fe9553fa37d585f43b8ae434dba0c6c3 Mon Sep 17 00:00:00 2001
|
||
|
|
From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hrn=C4=8Diar?= <tomas.hrnciar@me.com>
|
||
|
|
Date: Mon, 3 Jul 2023 16:41:50 +0200
|
||
|
|
Subject: [PATCH] Adjust versioneer.py for compatibility with Python 3.12
|
||
|
|
|
||
|
|
---
|
||
|
|
versioneer.py | 4 ++--
|
||
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
|
||
|
|
diff --git a/versioneer.py b/versioneer.py
|
||
|
|
index 7ed2a21..b7cdb0f 100644
|
||
|
|
--- a/versioneer.py
|
||
|
|
+++ b/versioneer.py
|
||
|
|
@@ -409,9 +409,9 @@ 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.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):
|