summaryrefslogtreecommitdiff
path: root/release.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-07-08 09:19:36 -0400
committerJason R. Coombs <jaraco@jaraco.com>2013-07-08 09:19:36 -0400
commit4aa047f9b4df39f0772603768a3322fb922c3dd7 (patch)
treea41cc59a2fa7c8fada3293e8ac18e55dc5e65d3e /release.py
parentc1aff52c963c378dd22b3d50a4a60457dbd2f56b (diff)
downloadpython-setuptools-bitbucket-4aa047f9b4df39f0772603768a3322fb922c3dd7.tar.gz
Added stubbed upload_ez_setup function
Diffstat (limited to 'release.py')
-rw-r--r--release.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/release.py b/release.py
index 152f0d9a..28be68b6 100644
--- a/release.py
+++ b/release.py
@@ -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')