diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-07-08 09:19:36 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-07-08 09:19:36 -0400 |
commit | 22ee649e178479934b2c658acf8de044e53d1670 (patch) | |
tree | 277084aba16d27c43ae11faeabd8fcc0cae95cf1 /release.py | |
parent | 5ae92f8fba0d7fe8d59477011816c0aef7b25db7 (diff) | |
download | external_python_setuptools-22ee649e178479934b2c658acf8de044e53d1670.tar.gz external_python_setuptools-22ee649e178479934b2c658acf8de044e53d1670.tar.bz2 external_python_setuptools-22ee649e178479934b2c658acf8de044e53d1670.zip |
Added stubbed upload_ez_setup function
Diffstat (limited to 'release.py')
-rw-r--r-- | release.py | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -154,6 +154,7 @@ def do_release(): subprocess.check_call(['hg', 'update', VERSION]) upload_to_pypi() + upload_ez_setup() # update to the tip for the next operation subprocess.check_call(['hg', 'update']) @@ -187,6 +188,13 @@ def upload_to_pypi(): env["SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES"] = "1" subprocess.check_call(cmd, env=env) +def upload_ez_setup(): + """ + TODO: upload ez_setup.py to a permalinked location. Currently, this + location is https://bitbucket.org/pypa/setuptools/downloads/ez_setup.py . + In the long term, it should be on PyPI. + """ + def has_sphinx(): try: devnull = open(os.path.devnull, 'wb') |