diff --git a/README.md b/README.md index cbdc7257..bc9626ec 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ cargo test cd python uv venv --python 3.11 .venv # create the local virtualenv source .venv/bin/activate # activate the virtual environment -uv pip install maturin[patchelf] # install build tool +uv pip install 'maturin[patchelf]' # install build tool uv pip install -e '.[tests]' # editable install with test extras maturin develop # build and install the Rust extension pytest python/tests/ -v # run the test suite diff --git a/python/Cargo.lock b/python/Cargo.lock index cab5d988..3efefc4c 100644 --- a/python/Cargo.lock +++ b/python/Cargo.lock @@ -1871,6 +1871,7 @@ dependencies = [ "datafusion", "datafusion-common", "datafusion-expr", + "datafusion-functions-aggregate", "datafusion-sql", "lance-core", "nom 7.1.3",