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
The following commit(s) were added to refs/heads/main by this push:
new 58f167c88 hotfix: ci error (#1061)
58f167c88 is described below
commit 58f167c884f0d5bffb4537bd025c7827df54c072
Author: Ryan Huang <[email protected]>
AuthorDate: Wed Feb 18 21:46:31 2026 +0800
hotfix: ci error (#1061)
* precommit remove extras
* update pyproject.toml
---
.github/workflows/pre-commit.yml | 2 +-
qdp/qdp-python/pyproject.toml | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml
index 67d6a0c4e..846ef22b2 100644
--- a/.github/workflows/pre-commit.yml
+++ b/.github/workflows/pre-commit.yml
@@ -41,7 +41,7 @@ jobs:
run: pip install uv
- name: Install dependencies
- run: uv sync --extra qdp --group dev
+ run: uv sync --group dev
- name: Run pre-commit hooks
run: uv run pre-commit run --all-files
diff --git a/qdp/qdp-python/pyproject.toml b/qdp/qdp-python/pyproject.toml
index f7fd659d6..c94bb32cf 100644
--- a/qdp/qdp-python/pyproject.toml
+++ b/qdp/qdp-python/pyproject.toml
@@ -49,5 +49,5 @@ cache-keys = [
[tool.maturin]
module-name = "_qdp"
-# Package at project root (qumat_qdp/) so editable install and uv run find it
-python-source = "."
+# Include qumat_qdp/ Python package in wheel alongside compiled _qdp extension
+python-packages = ["qumat_qdp"]