aboutsummaryrefslogtreecommitdiffstats
path: root/release.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-05-24 10:16:20 -0400
committerJason R. Coombs <jaraco@jaraco.com>2013-05-24 10:16:20 -0400
commit2faf1e9a78136fe09365e8054f0fc04cdb26db94 (patch)
tree4db9fc083522503b96307ca44e3b3d811dfaabed /release.py
parentefc915b3a20012ab7a6200b7b99fa970ea6dfbe4 (diff)
parentcf2a28328628a15a95ec354f8c3a4421d3652e31 (diff)
downloadexternal_python_setuptools-2faf1e9a78136fe09365e8054f0fc04cdb26db94.tar.gz
external_python_setuptools-2faf1e9a78136fe09365e8054f0fc04cdb26db94.tar.bz2
external_python_setuptools-2faf1e9a78136fe09365e8054f0fc04cdb26db94.zip
Merge changes from distribute 0.6.41
--HG-- rename : distribute_setup.py => ez_setup.py
Diffstat (limited to 'release.py')
-rw-r--r--release.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/release.py b/release.py
index 48871986..283340fb 100644
--- a/release.py
+++ b/release.py
@@ -67,7 +67,7 @@ def add_milestone_and_version(version=NEXT_VERSION):
auth = 'Basic ' + ':'.join(get_mercurial_creds()).encode('base64').strip()
headers = {
'Authorization': auth,
- }
+ }
base = 'https://api.bitbucket.org'
for type in 'milestones', 'versions':
url = (base + '/1.0/repositories/{repo}/issues/{type}'
@@ -101,7 +101,7 @@ def do_release():
print("Please do that")
raise SystemExit(1)
- print("Travis-CI tests: http://travis-ci.org/#!/jaraco/distribute")
+ print("Travis-CI tests: http://travis-ci.org/#!/jaraco/setuptools")
res = raw_input('Have you or has someone verified that the tests '
'pass on this revision? ')
if not res.lower().startswith('y'):
@@ -157,14 +157,14 @@ def build_docs():
return
if os.path.isdir('docs/build'):
shutil.rmtree('docs/build')
- subprocess.check_call([
+ cmd = [
'sphinx-build',
'-b', 'html',
'-d', 'build/doctrees',
'.',
'build/html',
- ],
- cwd='docs')
+ ]
+ subprocess.check_call(cmd, cwd='docs')
return True
def upload_bootstrap_script():