Skip to content

Commit 53eef47

Browse files
committed
fix: Add Cython build step to Makefile
1 parent b0a7878 commit 53eef47

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,10 @@ setup-venv: ## Create virtual environment
7272
install-dependencies: setup-venv ## Install all dependencies including extras
7373
uv sync $(PYTHON_ARG) --all-extras
7474

75-
install: install-uv install-dependencies ## Install uv and dependencies
75+
install: install-uv install-dependencies build-ext ## Install uv and dependencies
76+
77+
build-ext: ## Build Cython extensions
78+
uv run $(PYTHON_ARG) python setup.py build_ext --inplace
7679

7780
# ===============
7881
# Code Validation

0 commit comments

Comments
 (0)