diff options
author | tarek <none@none> | 2009-08-09 01:36:08 +0200 |
---|---|---|
committer | tarek <none@none> | 2009-08-09 01:36:08 +0200 |
commit | 7f6c43f1b2b82323746457aba0bc2d67278fa9a5 (patch) | |
tree | f462994f4f1a7982e4a3554fa14a532e1d20cd0f /distribute_setup.py | |
parent | df21ba23b73e7e09bdb4e5acb7397320dda17888 (diff) | |
download | external_python_setuptools-7f6c43f1b2b82323746457aba0bc2d67278fa9a5.tar.gz external_python_setuptools-7f6c43f1b2b82323746457aba0bc2d67278fa9a5.tar.bz2 external_python_setuptools-7f6c43f1b2b82323746457aba0bc2d67278fa9a5.zip |
added note about commiting the change after the release
--HG--
branch : distribute
extra : rebase_source : de19e64790e20106fa597a8ca1fe350ee92ae67b
Diffstat (limited to 'distribute_setup.py')
-rw-r--r-- | distribute_setup.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/distribute_setup.py b/distribute_setup.py index 2a616440..1ac9d2f1 100644 --- a/distribute_setup.py +++ b/distribute_setup.py @@ -34,10 +34,10 @@ DEFAULT_VERSION = "0.6" DEFAULT_URL = "http://pypi.python.org/packages/%s/d/distribute/" % sys.version[:3] md5_data = { - 'distribute-0.6-py2.3.egg': 'd41d8cd98f00b204e9800998ecf8427e', - 'distribute-0.6-py2.4.egg': 'd41d8cd98f00b204e9800998ecf8427e', - 'distribute-0.6-py2.5.egg': 'd41d8cd98f00b204e9800998ecf8427e', - 'distribute-0.6-py2.6.egg': 'd41d8cd98f00b204e9800998ecf8427e', + 'distribute-0.6-py2.3.egg': '13bc73069e91818142b608aad89f501a', + 'distribute-0.6-py2.4.egg': 'bbbd92be263b436e2e7c73c8011f9674', + 'distribute-0.6-py2.5.egg': '4033cda6bd930fa56711410212cd0c57', + 'distribute-0.6-py2.6.egg': '029edd3dd972f7bc4bd15ff820f65b09', } def _validate_md5(egg_name, data): @@ -400,7 +400,6 @@ def update_md5(filenames): for name in filenames: base = os.path.basename(name) f = open(name,'rb') - print 'hash for %s: %s' % (name, md5(f.read()).hexdigest()) md5_data[base] = md5(f.read()).hexdigest() f.close() |