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