From 82095999bfcd80b7780b74f101cc22ff190d5737 Mon Sep 17 00:00:00 2001 From: KnightChess Date: Tue, 10 Sep 2024 09:37:52 +0800 Subject: [PATCH] docs: update in-code comments (#132) --- python/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/Makefile b/python/Makefile index a60205d..0a8d69a 100644 --- a/python/Makefile +++ b/python/Makefile @@ -32,12 +32,12 @@ setup: ## Setup the requirements pip install "$(MATURIN_VERSION)" .PHONY: build -build: setup ## Build Python binding of delta-rs +build: setup ## Build Python binding of hudi-rs $(info --- Build Python binding ---) maturin build $(MATURIN_EXTRA_ARGS) .PHONY: develop -develop: setup ## Install Python binding of delta-rs +develop: setup ## Install Python binding of hudi-rs $(info --- Develop with Python binding ---) maturin develop --extras=devel,pandas $(MATURIN_EXTRA_ARGS)