Skip to content

Commit 2894a63

Browse files
Explicitly specify pyarrow installation in makefile since it is no longer mandatory (#380)
Co-authored-by: Luka Peschke <luka.peschke@toucantoco.com>
1 parent 377a951 commit 2894a63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ export CARGO_TERM_COLOR=$(shell (test -t 0 && echo "always") || echo "auto")
1010
.PHONY: install ## Install the package & dependencies with debug build
1111
install: .uv
1212
uv sync --frozen --group all
13-
uv run maturin develop --uv -E pandas,polars
13+
uv run maturin develop --uv -E pyarrow,pandas,polars
1414

1515
.PHONY: install-prod ## Install the package & dependencies with release build
1616
install-prod: .uv
1717
uv sync --frozen --group all
18-
uv run maturin develop --uv --release -E pandas,polars
18+
uv run maturin develop --uv --release -E pyarrow,pandas,polars
1919

2020
.PHONY: setup-dev ## First-time setup: install + pre-commit hooks
2121
setup-dev: install

0 commit comments

Comments
 (0)