diff --git a/setuptools/command/bdist_wheel.py b/setuptools/command/bdist_wheel.py index 1e3f637bcc..0813becd42 100644 --- a/setuptools/command/bdist_wheel.py +++ b/setuptools/command/bdist_wheel.py @@ -171,7 +171,12 @@ class bdist_wheel(Command): "g", "Group name used when creating a tar file [default: current group]", ), - ("universal", None, "*DEPRECATED* make a universal wheel [default: false]"), + ( + "universal", + None, + "*DEPRECATED* make a universal wheel [default: false]\n\n" + "Set `python_tag = py2.py3` in `setup.cfg` instead.", + ), ( "compression=", None, @@ -267,6 +272,9 @@ def finalize_options(self) -> None: is being obviated. Please discontinue using this option, or if you still need it, file an issue with pypa/setuptools describing your use case. + + The use of this setting can be replaced with `python_tag = py2.py3` + entry in `setup.cfg`.", """, due_date=(2025, 8, 30), # Introduced in 2024-08-30 )