We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2da7a38 commit 53cea65Copy full SHA for 53cea65
tests/test_manager.py
@@ -117,6 +117,10 @@ def test_ast_from_namespace_pkgutil(self) -> None:
117
def test_ast_from_namespace_pkg_resources(self) -> None:
118
self._test_ast_from_old_namespace_package_protocol("pkg_resources")
119
120
+ @pytest.mark.skipif(
121
+ PY312_PLUS or IS_PYPY,
122
+ reason="The pkg_resources package is slated for removal as early as 2025-11-30",
123
+ )
124
def test_identify_old_namespace_package_protocol(self) -> None:
125
# Like the above cases, this package follows the old namespace package protocol
126
# astroid currently assumes such packages are in sys.modules, so import it
0 commit comments