From 284559ddb4fec4c54df8541e52015c631eae62ed Mon Sep 17 00:00:00 2001 From: Ivan Anfimov Date: Sun, 19 Jan 2025 10:56:27 +0000 Subject: [PATCH] Makefile - update deprecated Change-Id: I60926c177deed99f224b804d5c4888574aa8d03a --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b573cd99..cb7d6efe 100644 --- a/Makefile +++ b/Makefile @@ -76,8 +76,9 @@ package: install rm -rf $(ROOT_DIR)/skyline_console/static yarn run build echo `git rev-parse --verify HEAD` > $(ROOT_DIR)/skyline_console/static/commit_id.txt - python3 setup.py sdist - python3 setup.py bdist_wheel + python3 -m pip install sdist + python3 -m pip install build + python3 -m build .PHONY: fmt