diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-28 17:18:28 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-28 17:18:28 -0400 |
commit | a8e437006a04ec091b4a88434698e4e7c7d3b0fe (patch) | |
tree | c47f42ae40baece65c33b9715cb99c04b72971bc /release.py | |
parent | a1bc841f097ac20ee5a6526c804398ffb3604c80 (diff) | |
download | external_python_setuptools-a8e437006a04ec091b4a88434698e4e7c7d3b0fe.tar.gz external_python_setuptools-a8e437006a04ec091b4a88434698e4e7c7d3b0fe.tar.bz2 external_python_setuptools-a8e437006a04ec091b4a88434698e4e7c7d3b0fe.zip |
No need to upload bootstrap script as it's referenced from the docs.
Diffstat (limited to 'release.py')
-rw-r--r-- | release.py | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -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()) |