diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-05-29 18:21:24 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-05-29 18:24:08 -0400 |
commit | e4aa9070e7196975edb41f8dcaccf8eccbf83b2e (patch) | |
tree | 1da05dc4a3bd10546c7b0629c75a4cd9ceed3f87 /setuptools/command/develop.py | |
parent | 74de4e985eda49e38ece5805e05197dd4d2d9c8a (diff) | |
download | python-setuptools-git-e4aa9070e7196975edb41f8dcaccf8eccbf83b2e.tar.gz |
Setuptools no longer installs a site.py file during easy_install or develop installs. Ref #2165.
Diffstat (limited to 'setuptools/command/develop.py')
-rw-r--r-- | setuptools/command/develop.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/setuptools/command/develop.py b/setuptools/command/develop.py index b5619246..e7e03cd4 100644 --- a/setuptools/command/develop.py +++ b/setuptools/command/develop.py @@ -139,7 +139,6 @@ class develop(namespaces.DevelopInstaller, easy_install): self.reinitialize_command('build_ext', inplace=1) self.run_command('build_ext') - self.install_site_py() # ensure that target dir is site-safe if setuptools.bootstrap_install_from: self.easy_install(setuptools.bootstrap_install_from) setuptools.bootstrap_install_from = None |