Skip to content

Commit 0dc924a

Browse files
committed
Fall back to distutils install rather than failing.
Closes #3143
1 parent 76b041d commit 0dc924a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

newsfragments/3143.bugfix.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
With ``setup.py install --prefix=...``, fall back to distutils install rather than failing. Note that running ``setup.py install`` is deprecated.

setuptools/command/install.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def run(self):
102102
# Run in backward-compatibility mode to support bdist_* commands.
103103
super().run()
104104
else:
105-
self.do_egg_install()
105+
super().run()
106106

107107
return None
108108

0 commit comments

Comments
 (0)