Patrick Williams | 73bd93f | 2024-02-20 08:07:48 -0600 | [diff] [blame] | 1 | From 3a71c9bc3747201e5bebe0e80b98ac6219209875 Mon Sep 17 00:00:00 2001 |
| 2 | From: alperak <alperyasinak1@gmail.com> |
| 3 | Date: Thu, 8 Feb 2024 14:09:32 +0300 |
| 4 | Subject: [PATCH] Patch versioneer for Python 3.12 compatibility |
| 5 | |
| 6 | AttributeError: 'ConfigParser' object has no attribute 'readfp'. Did you mean: 'read'? |
| 7 | AttributeError: module 'configparser' has no attribute 'SafeConfigParser'. Did you mean: 'RawConfigParser'? |
| 8 | |
| 9 | readfp 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 | |
| 11 | https://docs.python.org/3/whatsnew/3.12.html#configparser |
| 12 | |
| 13 | Upstream-Status: Submitted [https://github.com/irgeek/StrEnum/pull/34] |
| 14 | Signed-off-by: alperak <alperyasinak1@gmail.com> |
| 15 | --- |
| 16 | versioneer.py | 4 ++-- |
| 17 | 1 file changed, 2 insertions(+), 2 deletions(-) |
| 18 | |
| 19 | diff --git a/versioneer.py b/versioneer.py |
| 20 | index 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 | -- |
| 36 | 2.25.1 |
| 37 | |