This is an automated email from the ASF dual-hosted git repository.
tqchen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm-ffi.git
The following commit(s) were added to refs/heads/main by this push:
new 89cb606 fix(build): Broken Wheel Testing (#444)
89cb606 is described below
commit 89cb6066d1d8851e61e6201ca0782d78a4ed8160
Author: Junru Shao <[email protected]>
AuthorDate: Wed Feb 11 17:58:14 2026 -0800
fix(build): Broken Wheel Testing (#444)
Wheel testing has been broken by
https://github.com/apache/tvm-ffi/pull/441, which moves `test` from
optional-dependency to dependency-group. This PR fixes this bug.
---
pyproject.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index 0a5b0c8..c1a8f76 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -238,7 +238,7 @@ test-skip = ["cp38-*", "cp39-*", "cp310-*", "cp311-*"]
# focus on testing abi3 wheel
build-frontend = "build[uv]"
test-command = "pytest {package}/tests/python -vvs"
-test-extras = ["test"]
+test-groups = ["test"]
[tool.cibuildwheel.linux]
archs = ["x86_64", "aarch64"]