From 6212f255368e415ef71e96843b91ae717931e20e Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Mon, 8 Jul 2019 20:01:25 +0200 Subject: [PATCH] Don't use pipenv for releases --- Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 78ecfcd..56ea6d3 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,4 @@ -PIPENV := pipenv run - publish: @rm -rf dist - @$(PIPENV) python setup.py bdist_wheel --universal - @$(PIPENV) twine upload dist/* + @python setup.py bdist_wheel --universal + @twine upload dist/*