aboutsummaryrefslogtreecommitdiffstats
path: root/rtool.py
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-02-04 23:03:13 +0100
committerMaximilian Hils <git@maximilianhils.com>2016-02-04 23:03:13 +0100
commit9554ce9ab43a209777936f51b6fbef1ac2ddd277 (patch)
treee6b1c951bec84be9b823fd3d87aa884f6f26cf30 /rtool.py
parentd6c0157f7d11912c9d5f81e5086603054516635e (diff)
downloadmitmproxy-9554ce9ab43a209777936f51b6fbef1ac2ddd277.tar.gz
mitmproxy-9554ce9ab43a209777936f51b6fbef1ac2ddd277.tar.bz2
mitmproxy-9554ce9ab43a209777936f51b6fbef1ac2ddd277.zip
re-enable wheels
Diffstat (limited to 'rtool.py')
-rw-r--r--rtool.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/rtool.py b/rtool.py
index 95753b6a..78cf7bd9 100644
--- a/rtool.py
+++ b/rtool.py
@@ -182,10 +182,7 @@ def sdist():
[
"python", "./setup.py", "-q",
"sdist", "--dist-dir", DIST_DIR, "--formats=gztar",
- # We are currently not building wheels: mitmproxy has dependencies varying by platform,
- # so we'd need environment markers, which are not supported by old versions of setuptools.
- # Providing just the source is a bit slower, but it works everywhere.
- # "bdist_wheel", "--dist-dir", DIST_DIR,
+ "bdist_wheel", "--dist-dir", DIST_DIR,
],
cwd=conf["dir"]
)
@@ -280,8 +277,7 @@ def upload_release(username, password, repository):
for project in projects.keys():
files = (
sdist_name(project),
- # See sdist why this is disabled.
- # wheel_name(project)
+ wheel_name(project)
)
for f in files:
print("Uploading {} to {}...".format(f, repository))