diff --git a/recipes-devtools/python/python3-opt-einsum/0001-Use-ConfigParser-instead-of-SafeConfigParser.patch b/recipes-devtools/python/python3-opt-einsum/0001-Use-ConfigParser-instead-of-SafeConfigParser.patch new file mode 100644 index 0000000..93e3bd8 --- /dev/null +++ b/recipes-devtools/python/python3-opt-einsum/0001-Use-ConfigParser-instead-of-SafeConfigParser.patch @@ -0,0 +1,36 @@ +From 0beacf96923bbb2dd1939a9c59398a38ce7a11b1 Mon Sep 17 00:00:00 2001 +From: Hongxu Jia +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 +--- + 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 + diff --git a/recipes-devtools/python/python3-opt-einsum_3.3.0.bb b/recipes-devtools/python/python3-opt-einsum_3.3.0.bb index 16f3a6d..ce9d220 100644 --- a/recipes-devtools/python/python3-opt-einsum_3.3.0.bb +++ b/recipes-devtools/python/python3-opt-einsum_3.3.0.bb @@ -11,6 +11,9 @@ inherit pypi setuptools3 SRCNAME = "opt_einsum" PYPI_SRC_URI = "https://files.pythonhosted.org/packages/source/o/${PYPI_PACKAGE}/${SRCNAME}-${PV}.tar.gz" +SRC_URI += " \ + file://0001-Use-ConfigParser-instead-of-SafeConfigParser.patch \ +" S = "${WORKDIR}/${SRCNAME}-${PV}" BBCLASSEXTEND = "native"