[Python-checkins] r51962 - sandbox/branches/setuptools-0.6/release.sh sandbox/branches/setuptools-0.6/setup.cfg

phillip.eby python-checkins at python.org
Fri Sep 22 00:11:23 CEST 2006


Author: phillip.eby
Date: Fri Sep 22 00:11:22 2006
New Revision: 51962

Modified:
   sandbox/branches/setuptools-0.6/release.sh
   sandbox/branches/setuptools-0.6/setup.cfg
Log:
Build & upload win32 installers


Modified: sandbox/branches/setuptools-0.6/release.sh
==============================================================================
--- sandbox/branches/setuptools-0.6/release.sh	(original)
+++ sandbox/branches/setuptools-0.6/release.sh	Fri Sep 22 00:11:22 2006
@@ -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 && \

Modified: sandbox/branches/setuptools-0.6/setup.cfg
==============================================================================
--- sandbox/branches/setuptools-0.6/setup.cfg	(original)
+++ sandbox/branches/setuptools-0.6/setup.cfg	Fri Sep 22 00:11:22 2006
@@ -5,7 +5,10 @@
 [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


More information about the Python-checkins mailing list