From 6b7c42c77a3d094cbac0f676794cf4954f16f7d7 Mon Sep 17 00:00:00 2001 From: James Cooke Date: Fri, 3 Nov 2023 23:10:26 +0000 Subject: [PATCH] Other Makefile changes --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index efebb6e..216b404 100644 --- a/Makefile +++ b/Makefile @@ -39,7 +39,7 @@ docs: # Generate version signature used in README.rst .PHONY: signature signature: - tox exec -e py311-meta_plugin_dogfood -- flake8 --version + tox exec -e py312-meta_plugin_dogfood -- flake8 --version .PHONY: clean clean: @@ -58,11 +58,11 @@ bdist_wheel: .PHONY: testpypi testpypi: clean sdist bdist_wheel - twine upload --repository-url https://test.pypi.org/legacy/ dist/* + twine upload --username=__token__ --repository-url https://test.pypi.org/legacy/ dist/* .PHONY: pypi pypi: sdist bdist_wheel - twine upload --repository-url https://upload.pypi.org/legacy/ dist/* + twine upload --username=__token__ --repository-url https://upload.pypi.org/legacy/ dist/* .PHONY: on_master on_master: