From acadac1a1d1fb9c6c698d7b05f663457ff78e9bc Mon Sep 17 00:00:00 2001 From: Iacopo Spalletti Date: Wed, 10 Jan 2018 20:22:42 +0100 Subject: [PATCH] Use twine for release [ci skip] --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index b566a11..2dd7ef4 100644 --- a/Makefile +++ b/Makefile @@ -46,9 +46,9 @@ docs: $(MAKE) -C docs html release: clean - python setup.py sdist upload - python setup.py bdist_wheel upload + python setup.py clean --all sdist bdist_wheel + twine upload dist/* sdist: clean python setup.py sdist - ls -l dist \ No newline at end of file + ls -l dist