From 4d00d47a5a7eec2dc8e145dc2d9c2a6f68270496 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Tue, 24 Jan 2017 06:22:58 -0600 Subject: [PATCH] Use twine for publishing Requests --- Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4e3a149e..0fb26321 100644 --- a/Makefile +++ b/Makefile @@ -45,9 +45,10 @@ idna: rm -fr idna publish: - python setup.py register - python setup.py sdist upload - python setup.py bdist_wheel --universal upload + pip install 'twine>=1.5.0' + python setup.py sdist + python setup.py bdist_wheel --universal + twine upload dist/* rm -fr build dist .egg requests.egg-info