diff options
author | Christophe Combelles <ccomb@free.fr> | 2010-05-25 11:16:27 +0200 |
---|---|---|
committer | Christophe Combelles <ccomb@free.fr> | 2010-05-25 11:16:27 +0200 |
commit | d7dc0ff754d8f3b3f2bf56087644a0a6d80c7061 (patch) | |
tree | f49a58e42f2a46d3308e4ce44b6ff86fe13f58a5 | |
parent | f3411291c4ec89df2f9fe18263a5509fb4caaddf (diff) | |
download | external_python_setuptools-d7dc0ff754d8f3b3f2bf56087644a0a6d80c7061.tar.gz external_python_setuptools-d7dc0ff754d8f3b3f2bf56087644a0a6d80c7061.tar.bz2 external_python_setuptools-d7dc0ff754d8f3b3f2bf56087644a0a6d80c7061.zip |
fixed issue 163 : don't include md5 when comparing two distributions, and scan
index links before external page links.
--HG--
branch : distribute
extra : rebase_source : 21315f22104e090324f7fe243a4f16516c0a49fa
-rw-r--r-- | CHANGES.txt | 2 | ||||
-rw-r--r-- | setuptools/tests/server.py | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index f7119ada..d35422b9 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -8,6 +8,8 @@ CHANGES * Issue 160: 2.7 gives ValueError("Invalid IPv6 URL") * Issue 150: Fixed using ~/.local even in a --no-site-packages virtualenv +* Issue 163: scan index links before external links, and don't use the md5 when + comparing two distributions ------ 0.6.12 diff --git a/setuptools/tests/server.py b/setuptools/tests/server.py index 00f4e07c..2f455e41 100644 --- a/setuptools/tests/server.py +++ b/setuptools/tests/server.py @@ -13,6 +13,7 @@ class IndexServer(HTTPServer): s.start() index_url = s.base_url() + 'mytestindex' # do some test requests to the index + # The index files should be located in setuptools/tests/indexes s.stop() """ def __init__(self): |