Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion setuptools/command/bdist_wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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
)
Expand Down
Loading