From 4615cfd8a4d795e9153aa4729cbfbf521e4aaa05 Mon Sep 17 00:00:00 2001 From: jukejian Date: Sun, 13 Jul 2025 19:47:59 +0800 Subject: [PATCH] chore: add some compile commands for convenient development --- python/Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/python/Makefile b/python/Makefile index f51fe8c65cf..0f298df6531 100644 --- a/python/Makefile +++ b/python/Makefile @@ -20,6 +20,14 @@ format: format-python cargo fmt .PHONY: format +build: + maturin develop +.PHONY: build + +clean: + rm -rf ./target +.PHONY: clean + format-python: ruff format python ruff check --fix python