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 2b11dff commit 75f81b9Copy full SHA for 75f81b9
setuptools/__init__.py
@@ -167,6 +167,12 @@ class Command(_Command):
167
command_consumes_arguments = False
168
distribution: Distribution # override distutils.dist.Distribution with setuptools.dist.Distribution
169
170
+ dry_run = False # type: ignore[assignment] # pyright: ignore[reportAssignmentType] (until #4689; see #4872)
171
+ """
172
+ For compatibility with vendored bdist_wheel.
173
+ https://github.com/pypa/setuptools/pull/4872/files#r1986395142
174
175
+
176
def __init__(self, dist: Distribution, **kw) -> None:
177
"""
178
Construct the command for dist, updating
0 commit comments