From c826e06d2efd781571410633b42b0cdea3c8468a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Leblanc?= Date: Tue, 9 Jul 2019 10:28:48 -0400 Subject: [PATCH] fixed makefile gating --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c57ad4c..1d90d3d 100755 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ pypi-test: python setup.py sdist twine upload dist/* -r testpypi -pypi: pypi-test +pypi: twine upload dist/* check: @@ -14,4 +14,4 @@ check: @flake8 --exclude=./env --max-complexity=8 --count . @pytest -.PHONY: check +.PHONY: check pypi pypi-test