summaryrefslogtreecommitdiff
path: root/release.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-05-28 17:18:28 -0400
committerJason R. Coombs <jaraco@jaraco.com>2013-05-28 17:18:28 -0400
commit1d86a8c88e69f05be26e5e9f75368f2b10ff6c89 (patch)
treef57da9e65c2ccd375752549808f3180c4bcfe473 /release.py
parentd358ff2c6888e15f4535b2bfd1c014b426b76527 (diff)
downloadpython-setuptools-bitbucket-1d86a8c88e69f05be26e5e9f75368f2b10ff6c89.tar.gz
No need to upload bootstrap script as it's referenced from the docs.
Diffstat (limited to 'release.py')
-rw-r--r--release.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/release.py b/release.py
index e0c6a5eb..5a1bc3df 100644
--- a/release.py
+++ b/release.py
@@ -133,7 +133,6 @@ def do_release():
subprocess.check_call(['hg', 'update', VERSION])
upload_to_pypi()
- upload_bootstrap_script()
# update to the tip for the next operation
subprocess.check_call(['hg', 'update'])
@@ -192,14 +191,6 @@ def build_docs():
subprocess.check_call(cmd, cwd='docs')
return True
-def upload_bootstrap_script():
- scp_command = 'pscp' if sys.platform.startswith('win') else 'scp'
- try:
- subprocess.check_call([scp_command, 'distribute_setup.py',
- 'pypi@ziade.org:python-distribute.org/'])
- except:
- print("Unable to upload bootstrap script. Ask Tarek to do it.")
-
def linkify(source, dest):
with open(source) as source:
out = _linkified_text(source.read())