diff options
author | PJ Eby <distutils-sig@python.org> | 2006-03-11 00:39:09 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2006-03-11 00:39:09 +0000 |
commit | 72930bc0b1cb2e4e193c977802e92c86f72fdd7e (patch) | |
tree | ac67feea622995c06a21fed7fd73d45be413383a /setuptools/command/develop.py | |
parent | d2416feac24edccc11352f436c2a6ca3b5552384 (diff) | |
download | external_python_setuptools-72930bc0b1cb2e4e193c977802e92c86f72fdd7e.tar.gz external_python_setuptools-72930bc0b1cb2e4e193c977802e92c86f72fdd7e.tar.bz2 external_python_setuptools-72930bc0b1cb2e4e193c977802e92c86f72fdd7e.zip |
Added automatic handling of installation conflicts. Eggs are now shifted to
the front of sys.path, in an order consistent with where they came from,
making EasyInstall seamlessly co-operate with system package managers.
The ``--delete-conflicting`` and ``--ignore-conflicts-at-my-risk`` options
are now no longer necessary, and will generate warnings at the end of a
run if you use them.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4042965
Diffstat (limited to 'setuptools/command/develop.py')
-rwxr-xr-x | setuptools/command/develop.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/develop.py b/setuptools/command/develop.py index 774b6b5f..f38506bb 100755 --- a/setuptools/command/develop.py +++ b/setuptools/command/develop.py @@ -24,6 +24,7 @@ class develop(easy_install): self.uninstall_link() else: self.install_for_development() + self.warn_deprecated_options() def initialize_options(self): self.uninstall = None @@ -38,7 +39,6 @@ class develop(easy_install): - def finalize_options(self): ei = self.get_finalized_command("egg_info") if ei.broken_egg_info: |