Skip to content

Commit a1ecac4

Browse files
committed
Remove run override as it now unconditionally calls super().
1 parent 2b0d173 commit a1ecac4

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

setuptools/command/install.py

-13
Original file line numberDiff line numberDiff line change
@@ -93,19 +93,6 @@ def handle_extra_path(self):
9393
self.extra_dirs = ''
9494
return None
9595

96-
def run(self):
97-
# Explicit request for old-style install? Just do it
98-
if self.old_and_unmanageable or self.single_version_externally_managed:
99-
return super().run()
100-
101-
if not self._called_from_setup(inspect.currentframe()):
102-
# Run in backward-compatibility mode to support bdist_* commands.
103-
return super().run()
104-
else:
105-
return super().run()
106-
107-
return None
108-
10996
@staticmethod
11097
def _called_from_setup(run_frame):
11198
"""

0 commit comments

Comments
 (0)