summaryrefslogtreecommitdiff
path: root/dev-python/oslotest/files/oslotest-4.5.0-py3.12-fix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/oslotest/files/oslotest-4.5.0-py3.12-fix.patch')
-rw-r--r--dev-python/oslotest/files/oslotest-4.5.0-py3.12-fix.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/dev-python/oslotest/files/oslotest-4.5.0-py3.12-fix.patch b/dev-python/oslotest/files/oslotest-4.5.0-py3.12-fix.patch
deleted file mode 100644
index d9325741d5d6..000000000000
--- a/dev-python/oslotest/files/oslotest-4.5.0-py3.12-fix.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-Subject: [PATCH] Replace find_module function
-
-find_module function was deprecated in Python 3.4 [1] and later removed
-in Python 3.12 [2], the find_spec function should be used instead. This
-change is necessary for proper Python 3.12 support.
-
-[1] https://docs.python.org/3.4/library/importlib.html#importlib.abc.MetaPathFinder.find_module
-[2] https://github.com/python/cpython/issues/98040
-
-Upstream: https://review.opendev.org/c/openstack/oslotest/+/886646
-
-diff --git a/oslotest/modules.py b/oslotest/modules.py
-index f453b17..8fe04a2 100644
---- a/oslotest/modules.py
-+++ b/oslotest/modules.py
-@@ -45,6 +45,6 @@
- def __init__(self, module):
- self.module = module
-
-- def find_module(self, fullname, path):
-+ def find_spec(self, fullname, path, target):
- if fullname == self.module or fullname.startswith(self.module + '.'):
- raise ImportError