diff options
author | PJ Eby <distutils-sig@python.org> | 2006-09-21 22:11:22 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2006-09-21 22:11:22 +0000 |
commit | 70c294c9d39d953dd1f64f52e753a82a5e206bbe (patch) | |
tree | e7f052afc5c1f55d25c21a8f78c6610e08328ff9 | |
parent | 0660a02f3cce2010406b4f2ec597142430e4265d (diff) | |
download | external_python_setuptools-70c294c9d39d953dd1f64f52e753a82a5e206bbe.tar.gz external_python_setuptools-70c294c9d39d953dd1f64f52e753a82a5e206bbe.tar.bz2 external_python_setuptools-70c294c9d39d953dd1f64f52e753a82a5e206bbe.zip |
Build & upload win32 installers
--HG--
branch : setuptools-0.6
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4051962
-rwxr-xr-x | release.sh | 6 | ||||
-rwxr-xr-x | setup.cfg | 5 |
2 files changed, 7 insertions, 4 deletions
@@ -9,9 +9,9 @@ export VERSION="0.6c4" -python2.3 setup.py -q release source && \ -python2.4 setup.py -q release binary && \ -python2.5 setup.py -q release binary && \ +python2.3 setup.py -q release source --target-version=2.3 upload && \ +python2.4 setup.py -q release binary --target-version=2.4 upload && \ +python2.5 setup.py -q release binary --target-version=2.5 upload && \ python2.3 ez_setup.py --md5update dist/setuptools-$VERSION*-py2.?.egg && \ cp ez_setup.py virtual-python.py ~/distrib/ && \ cp ez_setup.py ~/projects/ez_setup/__init__.py && \ @@ -5,7 +5,10 @@ tag_svn_revision = 1 [aliases] release = egg_info -RDb '' source = sdist bdist_rpm register binary -binary = bdist_egg bdist_wininst upload --show-response +binary = bdist_egg bdist_wininst + +[upload] +show_response = 1 [bdist_rpm] source_only = 1 |