Update pypi build command

This commit is contained in:
Antonin Raffin 2023-05-24 11:41:28 +02:00
parent d467d7a844
commit c84079d4f3
1 changed files with 2 additions and 4 deletions

View File

@ -42,14 +42,12 @@ spelling:
# PyPi package release # PyPi package release
release: release:
python setup.py sdist python -m build
python setup.py bdist_wheel
twine upload dist/* twine upload dist/*
# Test PyPi package release # Test PyPi package release
test-release: test-release:
python setup.py sdist python -m build
python setup.py bdist_wheel
twine upload --repository-url https://test.pypi.org/legacy/ dist/* twine upload --repository-url https://test.pypi.org/legacy/ dist/*
.PHONY: lint format check-codestyle commit-checks doc spelling .PHONY: lint format check-codestyle commit-checks doc spelling