Skip to content

Commit

Permalink
add namespace to toml
Browse files Browse the repository at this point in the history
  • Loading branch information
laszewsk committed Dec 16, 2023
1 parent 0b37b18 commit 89a5c95
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions makefile-pypi.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
twine:
pip install -U twine

.PHONY: dist

dist:
python setup.py sdist bdist_wheel
pip install -q build
python -m build
twine check dist/*

ndist:
pip install -q build
python -m build

npatch:
python -m twine upload --repository testpypi dist/*

patch: clean twine
$(call banner, "patch")
pip install -r requirements-dev.txt
Expand All @@ -24,7 +24,6 @@ patch: clean twine
git commit -m "bump version ${VERSION}" .; git push
pip install -q build
python -m build
git push origin main --tags
twine check dist/*
twine upload --repository testpypi dist/*

Expand Down

0 comments on commit 89a5c95

Please sign in to comment.