summaryrefslogtreecommitdiff
path: root/distribute_setup.py
diff options
context:
space:
mode:
authortarek <none@none>2009-08-09 01:26:28 +0200
committertarek <none@none>2009-08-09 01:26:28 +0200
commitdf21ba23b73e7e09bdb4e5acb7397320dda17888 (patch)
tree6ca1464253189f31bf788327fb1c72cd8292660b /distribute_setup.py
parent7c686d2477ea28fd4baf19a01ff6453604cbdec7 (diff)
downloadpython-setuptools-git-df21ba23b73e7e09bdb4e5acb7397320dda17888.tar.gz
simplified the release process
--HG-- branch : distribute extra : rebase_source : 4126164528a5ebbea66de779cc30c5f4b5e5c7d0
Diffstat (limited to 'distribute_setup.py')
-rw-r--r--distribute_setup.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/distribute_setup.py b/distribute_setup.py
index 24882a84..2a616440 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': '71c3b220419b3772c4522eca622ff091',
- 'distribute-0.6-py2.4.egg': '845c9837845d1e50d64e2a978bf60b0f',
- 'distribute-0.6-py2.5.egg': 'ebaa166a2b20d56ac236b16ef597aa2c',
- 'distribute-0.6-py2.6.egg': 'd95c2a32b82d7f7b545434f7e322a83d',
+ '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',
}
def _validate_md5(egg_name, data):
@@ -400,6 +400,7 @@ 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()