From e0addfcb0d8f72f91ff3b5198bd7fa66c186f83d Mon Sep 17 00:00:00 2001 From: Adam Geitgey Date: Thu, 20 Feb 2020 14:26:53 +0000 Subject: [PATCH] Fix pypi upload for new releases --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5af87c9..5e90960 100644 --- a/Makefile +++ b/Makefile @@ -75,8 +75,9 @@ servedocs: docs ## compile the docs watching for changes watchmedo shell-command -p '*.rst' -c '$(MAKE) -C docs html' -R -D . release: clean ## package and upload a release - python3 setup.py sdist upload - python3 setup.py bdist_wheel upload + python3 setup.py sdist + python3 setup.py bdist_wheel + twine upload dist/* dist: clean ## builds source and wheel package python3 setup.py sdist -- GitLab