From 41a57f84efc8284964450615dca400bc17bbbb4e Mon Sep 17 00:00:00 2001 From: Guy Rozendorn Date: Tue, 14 May 2013 11:15:38 +0300 Subject: Bumped to 0.6.41 in preparation for next release. --HG-- branch : distribute extra : rebase_source : 235fe544e2119364d2f4270a6c5ca20db4645324 --- release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'release.py') diff --git a/release.py b/release.py index 2dc51ae8..8a3af24f 100644 --- a/release.py +++ b/release.py @@ -22,7 +22,7 @@ try: except Exception: pass -VERSION = '0.6.40' +VERSION = '0.6.41' PACKAGE_INDEX = 'https://pypi.python.org/pypi' PACKAGE_INDEX = 'https://pypi.python.org/pypi' -- cgit v1.2.3 From 0b0d47d267599d19e5ac5ce442c7f9c92bd1177d Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sun, 19 May 2013 22:52:40 -0400 Subject: Delint release script --HG-- branch : distribute --- release.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'release.py') diff --git a/release.py b/release.py index 8a3af24f..ad4070a1 100644 --- a/release.py +++ b/release.py @@ -69,7 +69,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}' @@ -159,14 +159,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(): -- cgit v1.2.3 From c0a6a1347041a816d51331285a183fd8b8f69182 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sun, 19 May 2013 22:54:11 -0400 Subject: Update reference to Travis CI using setuptools mirror --HG-- branch : distribute --- release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'release.py') diff --git a/release.py b/release.py index ad4070a1..e46cd317 100644 --- a/release.py +++ b/release.py @@ -103,7 +103,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'): -- cgit v1.2.3 From cf2a28328628a15a95ec354f8c3a4421d3652e31 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Fri, 24 May 2013 09:59:08 -0400 Subject: Bumped to 0.6.42 in preparation for next release. --HG-- branch : distribute --- release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'release.py') diff --git a/release.py b/release.py index e46cd317..b657d990 100644 --- a/release.py +++ b/release.py @@ -22,7 +22,7 @@ try: except Exception: pass -VERSION = '0.6.41' +VERSION = '0.6.42' PACKAGE_INDEX = 'https://pypi.python.org/pypi' PACKAGE_INDEX = 'https://pypi.python.org/pypi' -- cgit v1.2.3