From 2687c3dfd70fbfe70bd8949612a1d33dbf620734 Mon Sep 17 00:00:00 2001 From: Michel Lind Date: Wed, 4 Mar 2026 12:01:28 +0000 Subject: [PATCH] Ignore _missing_stdlib_info when testing This is no longer present in Python 3.15, see https://bugzilla.redhat.com/show_bug.cgi?id=2417018 https://copr.fedorainfracloud.org/coprs/g/python/python3.15/package/python-stdlibs/ Signed-off-by: Michel Lind --- stdlibs/tests/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlibs/tests/__init__.py b/stdlibs/tests/__init__.py index 16a7e04..e709a6b 100644 --- a/stdlibs/tests/__init__.py +++ b/stdlibs/tests/__init__.py @@ -36,6 +36,7 @@ def test_all_my_modules_are_there(self) -> None: name = module.with_suffix("").name name = name.split(".")[0] # __phello__.foo if name.startswith("_sysconfigdata_") or name in ( + "_missing_stdlib_info", "sitecustomize", "usercustomize", ):