From 78d2e13e8168f8df644376c5d6637fe24206de80 Mon Sep 17 00:00:00 2001 From: Todd Leonhardt Date: Sun, 15 Apr 2018 11:26:50 -0700 Subject: [PATCH] Updated build step in fabfile to include both source and wheel distributions --- fabfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabfile.py b/fabfile.py index cf0151e4f..a80d5d50a 100644 --- a/fabfile.py +++ b/fabfile.py @@ -30,7 +30,7 @@ def clean(): @task def build(): - local("python setup.py sdist") + local("python setup.py sdist bdist_wheel") @task