diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-24 10:16:20 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-24 10:16:20 -0400 |
commit | 2faf1e9a78136fe09365e8054f0fc04cdb26db94 (patch) | |
tree | 4db9fc083522503b96307ca44e3b3d811dfaabed /release.py | |
parent | efc915b3a20012ab7a6200b7b99fa970ea6dfbe4 (diff) | |
parent | cf2a28328628a15a95ec354f8c3a4421d3652e31 (diff) | |
download | external_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.py | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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(): |