From ccd7231065d18fbc73d83e67ecaa5c38ccccefe2 Mon Sep 17 00:00:00 2001 From: pancake Date: Tue, 30 Apr 2024 16:56:45 +0200 Subject: [PATCH] Use updated twine pub oneliner --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index de5d830..2ef9a68 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,9 @@ all: pub: rm -rf dist $(PYTHON) setup.py sdist - twine upload --repository=pypi --verbose dist/* + twine check dist/* + twine upload -u __token__ --repository-url https://upload.pypi.org/legacy/ --verbose dist/* + #twine upload --repository=pypi --verbose dist/* install: $(PIP) install .