From 1bfb55df0edc6882ecadf499419cd3ecb8fe6a79 Mon Sep 17 00:00:00 2001 From: Antonin Raffin Date: Wed, 24 May 2023 11:38:37 +0200 Subject: [PATCH] [ci skip] Update pypi build command --- Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 4f477d066..7fa590c69 100644 --- a/Makefile +++ b/Makefile @@ -60,14 +60,12 @@ docker-gpu: # 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: clean spelling doc lint format check-codestyle commit-checks