From 37336a63d98753fe96321a94fc279d8fd1e8c2bf Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 17 Feb 2026 19:55:43 -0500 Subject: [PATCH] makefile: update "dist" target to avoid setup.py --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 13b18cb..4637b06 100644 --- a/makefile +++ b/makefile @@ -45,11 +45,11 @@ lint: # the source files. .PHONY: dist dist: clean doc - python setup.py sdist + python -m build --sdist --no-isolation --skip-dependency-check # Delete urrythang. .PHONY: clean clean: rm -rf $(PN)/__pycache__ test/__pycache__ doc/build - rm -rf $(PN).egg-info + rm -rf $(PN)/$(PN).egg-info rm -rf dist -- 2.51.0