This is an automated email from the ASF dual-hosted git repository. guanmingchiu pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/mahout.git
commit d7f524f4d1479e894edaa58b0fb45ef796bb04f6 Author: Ryan Huang <[email protected]> AuthorDate: Sun Dec 7 20:46:19 2025 -0800 [QDP] update uv usage in qdp-python (#698) Updated build instructions to include Python 3.11 environment setup. --- qdp/qdp-python/README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/qdp/qdp-python/README.md b/qdp/qdp-python/README.md index f4d7b43b0..aed316952 100644 --- a/qdp/qdp-python/README.md +++ b/qdp/qdp-python/README.md @@ -16,9 +16,13 @@ dlpack_ptr = engine.encode(data, num_qubits=2, encoding_method="amplitude") ``` ## Build from source - ```bash -uv sync --extra dev +# add a uv python 3.11 environment +uv venv -p python3.11 +source .venv/bin/activate +``` +```bash +uv sync --group dev uv run maturin develop ```
