From 06e6b55ecc1a1178081b16bf8908c64d703b750f Mon Sep 17 00:00:00 2001 From: Ivan Date: Sun, 23 Nov 2025 11:02:29 -0600 Subject: [PATCH] Update Makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4f361b7..23b424d 100644 --- a/Makefile +++ b/Makefile @@ -9,13 +9,13 @@ DOCKER_BUILD_LOAD := $(shell docker buildx version >/dev/null 2>&1 && echo "dock all: build build: clean - python3 setup.py sdist bdist_wheel + python3 -m build sdist: - python3 setup.py sdist + python3 -m build --sdist wheel: - python3 setup.py bdist_wheel + python3 -m build --wheel clean: rm -rf build dist *.egg-info