Commit a8e43700 authored by Jason R. Coombs's avatar Jason R. Coombs

No need to upload bootstrap script as it's referenced from the docs.

parent a1bc841f
......@@ -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())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment