diff options
author | Maximilian Hils <git@maximilianhils.com> | 2015-12-03 18:03:59 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2015-12-03 18:03:59 +0100 |
commit | d6c0157f7d11912c9d5f81e5086603054516635e (patch) | |
tree | 85b96a4818ad44fb61d375c06b60d7914b06e8da /rtool.py | |
parent | 79da0f7c93d650d7df22bcd7c521ae3b6f50c461 (diff) | |
download | mitmproxy-d6c0157f7d11912c9d5f81e5086603054516635e.tar.gz mitmproxy-d6c0157f7d11912c9d5f81e5086603054516635e.tar.bz2 mitmproxy-d6c0157f7d11912c9d5f81e5086603054516635e.zip |
fully disable wheels
Diffstat (limited to 'rtool.py')
-rw-r--r-- | rtool.py | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -198,7 +198,7 @@ def sdist(): with chdir(DIST_DIR): for project, conf in projects.items(): print("Installing %s..." % project) - subprocess.check_call([VENV_PIP, "install", "-q", wheel_name(project)]) + subprocess.check_call([VENV_PIP, "install", "-q", sdist_name(project)]) print("Running binaries...") for project, conf in projects.items(): @@ -278,7 +278,12 @@ def upload_release(username, password, repository): Upload source distributions to PyPI """ for project in projects.keys(): - for f in (sdist_name(project), wheel_name(project)): + files = ( + sdist_name(project), + # See sdist why this is disabled. + # wheel_name(project) + ) + for f in files: print("Uploading {} to {}...".format(f, repository)) subprocess.check_call([ "twine", |