From 89a5c95512dd7923857f914fc5ca77568616c836 Mon Sep 17 00:00:00 2001 From: Gregor von Laszewski Date: Sat, 16 Dec 2023 00:17:36 -0500 Subject: [PATCH] add namespace to toml --- makefile-pypi.mk | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/makefile-pypi.mk b/makefile-pypi.mk index e4a16e9..1aa9553 100644 --- a/makefile-pypi.mk +++ b/makefile-pypi.mk @@ -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 @@ -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/*