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 30c0038 commit 5b39e4eCopy full SHA for 5b39e4e
setuptools/command/easy_install.py
@@ -4,7 +4,7 @@
4
5
from setuptools import Command
6
7
-from .. import _scripts
+from .. import _scripts, warnings
8
9
10
class easy_install(Command):
@@ -21,4 +21,10 @@ def __getattr__(name):
21
),
22
name,
23
)
24
+ warnings.SetuptoolsDeprecationWarning.emit(
25
+ summary="easy_install module is deprecated",
26
+ details="Avoid accessing attributes of setuptools.command.easy_install.",
27
+ due_date=(2025, 10, 31),
28
+ see_url="https://github.com/pypa/setuptools/issues/4976",
29
+ )
30
return attr
0 commit comments