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 | 848e3c33c19766bc0f93edebe5b528043a171e7c (patch) | |
tree | ac67feea622995c06a21fed7fd73d45be413383a /setuptools/command/develop.py | |
parent | 8f414ed37dfa3756740f9ad61f27fa48cd2aa61a (diff) | |
download | python-setuptools-bitbucket-848e3c33c19766bc0f93edebe5b528043a171e7c.tar.gz |
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.
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: |