From 1c2291f417ea6a563b59c479703779d146f546a8 Mon Sep 17 00:00:00 2001 From: Paul Melnikow Date: Thu, 5 Dec 2019 14:13:07 -0500 Subject: [PATCH] Publish the wheel using Python 3 (#150) --- dev.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev.py b/dev.py index edacb11..638e297 100755 --- a/dev.py +++ b/dev.py @@ -73,7 +73,7 @@ def clean(): @cli.command() def publish(): execute("rm -rf dist/") - execute("python setup.py sdist bdist_wheel") + execute("python3 setup.py sdist bdist_wheel") execute("twine upload dist/*")