blob: 93e3bd852395d1c7d65e73357535f8b8357d7ce1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
From 0beacf96923bbb2dd1939a9c59398a38ce7a11b1 Mon Sep 17 00:00:00 2001
From: Hongxu Jia <hongxu.jia@windriver.com>
Date: Thu, 17 Nov 2022 17:04:54 -0800
Subject: [PATCH] Use ConfigParser instead of SafeConfigParser
The SafeConfigParser class will be renamed to ConfigParser in Python
3.12 [1]. This alias will be removed in future versions.So we can use
ConfigParser directly instead.
[1] https://github.com/python/cpython/issues/89336
Upstream-Status: Submitted [https://github.com/dgasmith/opt_einsum/pull/208]
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
---
versioneer.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/versioneer.py b/versioneer.py
index d3db643..6d732af 100644
--- a/versioneer.py
+++ b/versioneer.py
@@ -339,9 +339,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):
--
2.37.1
|