summaryrefslogtreecommitdiff
path: root/pkg_resources.txt
diff options
context:
space:
mode:
authorpje <pje@6015fed2-1504-0410-9fe1-9d1591cc4771>2005-10-18 04:08:46 +0000
committerpje <pje@6015fed2-1504-0410-9fe1-9d1591cc4771>2005-10-18 04:08:46 +0000
commitc66954261e68b4e857a4bb336332eb9af7ba3347 (patch)
tree9a2b00762a46a8839f7d4ac12ab014afc2c5a584 /pkg_resources.txt
parentf09470b77872daed3f2aac55f50cefbc114fd669 (diff)
downloadpython-setuptools-c66954261e68b4e857a4bb336332eb9af7ba3347.tar.gz
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. git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@41265 6015fed2-1504-0410-9fe1-9d1591cc4771
Diffstat (limited to 'pkg_resources.txt')
-rwxr-xr-xpkg_resources.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg_resources.txt b/pkg_resources.txt
index d8198f5..1f3e47f 100755
--- a/pkg_resources.txt
+++ b/pkg_resources.txt
@@ -1499,6 +1499,10 @@ Release Notes/Change History
non-namespace modules have already been imported and issues a warning if
a conflicting module has already been imported.
+ * Changed dependency processing so that it's breadth-first, allowing a
+ depender's preferences to override those of a dependee, to prevent conflicts
+ when a lower version is acceptable to the dependee, but not the depender.
+
0.6a4
* Fix a bug in ``WorkingSet.resolve()`` that was introduced in 0.6a3.