diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-12 14:18:48 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-12 14:18:48 -0400 |
commit | e39187f454fae5e93ee0b9cf35142d02dafcd1d5 (patch) | |
tree | d9bd65f1e65568d935d0468566e1b57d7569ae5d /release.py | |
parent | 3ab400cd437e4839cb8d4cc70dd5889a5b0c7469 (diff) | |
parent | c814c26df28f82dc18c3000a130e6b7c4a4b41f5 (diff) | |
download | external_python_setuptools-e39187f454fae5e93ee0b9cf35142d02dafcd1d5.tar.gz external_python_setuptools-e39187f454fae5e93ee0b9cf35142d02dafcd1d5.tar.bz2 external_python_setuptools-e39187f454fae5e93ee0b9cf35142d02dafcd1d5.zip |
Merge
--HG--
branch : distribute
extra : rebase_source : 6b1741a2e6a320d037d9aa58f605407f0e4f866e
Diffstat (limited to 'release.py')
-rw-r--r-- | release.py | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -24,6 +24,7 @@ except Exception: VERSION = '0.6.40' PACKAGE_INDEX = 'https://pypi.python.org/pypi' +PACKAGE_INDEX = 'https://pypi.python.org/pypi' def get_next_version(): digits = map(int, VERSION.split('.')) @@ -118,8 +119,13 @@ def do_release(): has_docs = build_docs() if os.path.isdir('./dist'): shutil.rmtree('./dist') - cmd = [sys.executable, 'setup.py', '-q', 'egg_info', '-RD', '-b', '', - 'sdist', 'register', 'upload', '-r', PACKAGE_INDEX] + cmd = [ + sys.executable, 'setup.py', '-q', + 'egg_info', '-RD', '-b', '', + 'sdist', + 'register', '-r', PACKAGE_INDEX, + 'upload', '-r', PACKAGE_INDEX, + ] if has_docs: cmd.extend(['upload_docs', '-r', PACKAGE_INDEX]) subprocess.check_call(cmd) |