From c84079d4f3c07acbf6aea52e1d97ad2bfbcf625b Mon Sep 17 00:00:00 2001 From: Antonin Raffin Date: Wed, 24 May 2023 11:41:28 +0200 Subject: [PATCH] Update pypi build command --- Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index d3151b9..0f53f5b 100644 --- a/Makefile +++ b/Makefile @@ -42,14 +42,12 @@ spelling: # PyPi package release release: - python setup.py sdist - python setup.py bdist_wheel + python -m build twine upload dist/* # Test PyPi package release test-release: - python setup.py sdist - python setup.py bdist_wheel + python -m build twine upload --repository-url https://test.pypi.org/legacy/ dist/* .PHONY: lint format check-codestyle commit-checks doc spelling