diff --git a/pyproject.toml b/pyproject.toml index 99ff1191..6c9d78d7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "vectorless" -version = "0.1.2" +version = "0.1.3" description = "Hierarchical document intelligence without vectors" readme = "README.md" requires-python = ">=3.9" diff --git a/python/src/lib.rs b/python/src/lib.rs index d4e2f972..a8b32439 100644 --- a/python/src/lib.rs +++ b/python/src/lib.rs @@ -1069,7 +1069,7 @@ impl PyEngine { /// print(answer.single().content) /// ``` #[pymodule] -fn vectorless(m: &Bound<'_, PyModule>) -> PyResult<()> { +fn _vectorless(m: &Bound<'_, PyModule>) -> PyResult<()> { m.add_class::()?; m.add_class::()?; m.add_class::()?;