From 15341b3c14097a0a0e21bf604e80b4550598c312 Mon Sep 17 00:00:00 2001 From: beinan Date: Sun, 15 Feb 2026 04:19:07 +0000 Subject: [PATCH] fix(python): set module-name in pyproject.toml to resolve maturin build error Explicitly set `module-name = "lance_graph._internal"` in `pyproject.toml`. This fixes a build error where maturin was looking for `_internal` as a top-level module in the python source directory, instead of placing it inside the `lance_graph` package. Co-authored-by: Cursor --- python/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/python/pyproject.toml b/python/pyproject.toml index 56828742..a38da6db 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -38,6 +38,7 @@ classifiers = [ [tool.maturin] python-source = "python" +module-name = "lance_graph._internal" python-packages = ["lance_graph", "knowledge_graph"] manifest-path = "../crates/lance-graph-python/Cargo.toml"