Update pypi build command
This commit is contained in:
parent
d467d7a844
commit
c84079d4f3
6
Makefile
6
Makefile
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue