1From 3a71c9bc3747201e5bebe0e80b98ac6219209875 Mon Sep 17 00:00:00 2001
2From: alperak <alperyasinak1@gmail.com>
3Date: Thu, 8 Feb 2024 14:09:32 +0300
4Subject: [PATCH] Patch versioneer for Python 3.12 compatibility
5
6AttributeError: 'ConfigParser' object has no attribute 'readfp'. Did you mean: 'read'?
7AttributeError: module 'configparser' has no attribute 'SafeConfigParser'. Did you mean: 'RawConfigParser'?
8
9readfp and SafeConfigParser has been deprecated since Python 3.2 and removed in Python 3.12 (due October 2023). Use read_file and ConfigParser instead.
10
11https://docs.python.org/3/whatsnew/3.12.html#configparser
12
13Upstream-Status: Submitted [https://github.com/irgeek/StrEnum/pull/34]
14Signed-off-by: alperak <alperyasinak1@gmail.com>
15---
16 versioneer.py | 4 ++--
17 1 file changed, 2 insertions(+), 2 deletions(-)
18
19diff --git a/versioneer.py b/versioneer.py
20index 64fea1c..3aa5da3 100644
21--- a/versioneer.py
22+++ b/versioneer.py
23@@ -339,9 +339,9 @@ def get_config_from_root(root):
24     # configparser.NoOptionError (if it lacks "VCS="). See the docstring at
25     # the top of versioneer.py for instructions on writing your setup.cfg .
26     setup_cfg = os.path.join(root, "setup.cfg")
27-    parser = configparser.SafeConfigParser()
28+    parser = configparser.ConfigParser()
29     with open(setup_cfg, "r") as f:
30-        parser.readfp(f)
31+        parser.read_file(f)
32     VCS = parser.get("versioneer", "VCS")  # mandatory
33
34     def get(parser, name):
35--
362.25.1
37
38