From b668e1ab2c2fbd973f3bf8865db79f0a7b37141f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Thu, 17 Jan 2019 09:00:22 +0100 Subject: [PATCH] Build universal wheels when releasing --- tasks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks.py b/tasks.py index ed7f166..87ed276 100644 --- a/tasks.py +++ b/tasks.py @@ -15,5 +15,6 @@ def release(c): c.run("git push --tags") c.run("python setup.py sdist") + c.run("python setup.py bdist_wheel") c.run("twine upload -r pypi dist/aiodns-{0}*".format(version))