diff options
author | PJ Eby <distutils-sig@python.org> | 2005-10-18 04:08:46 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-10-18 04:08:46 +0000 |
commit | 741f1742fee6d55a6a278ff44215aaf0959381c5 (patch) | |
tree | 9a2b00762a46a8839f7d4ac12ab014afc2c5a584 /setuptools/command/easy_install.py | |
parent | 8f158d47596b45487e91a9c1869fb965b8c90d74 (diff) | |
download | external_python_setuptools-741f1742fee6d55a6a278ff44215aaf0959381c5.tar.gz external_python_setuptools-741f1742fee6d55a6a278ff44215aaf0959381c5.tar.bz2 external_python_setuptools-741f1742fee6d55a6a278ff44215aaf0959381c5.zip |
Hurray! Our first dependency processing bug! This is cool because it
means that people are finally doing enough things with setuptools to
have real-life version conflict scenarios. Luckily, the fix is trivial:
use breadth-first instead of depth-first dependency processing, which I
thought we were already doing anyway, but weren't. And we were giving
precedence to already-installed packages, which means upgrades didn't
work so well.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041265
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index d85858a7..c076a5fd 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -394,7 +394,7 @@ class easy_install(Command): return try: - WorkingSet(self.shadow_path).resolve( + WorkingSet([]).resolve( [requirement], self.local_index, self.easy_install ) except DistributionNotFound, e: |