This is an automated email from the ASF dual-hosted git repository.
mshr-h pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
The following commit(s) were added to refs/heads/main by this push:
new 567aaa59bb [Fix][Python] Use standard scikit-build directory (#19990)
567aaa59bb is described below
commit 567aaa59bb8fa9a6831846421536147e812eafb5
Author: Shushi Hong <[email protected]>
AuthorDate: Sun Jul 12 22:37:01 2026 -0400
[Fix][Python] Use standard scikit-build directory (#19990)
This PR removes `{wheel_tag}` from the scikit-build build directory,
solving the issue #19987 mentioned
Each cibuildwheel matrix job runs in an isolated environment, so
separate tagged build directories are unnecessary. Using `build`
restores the existing `build/lib` development layout expected by
`tvm.libinfo` and fixes editable installs without adding runtime
directory globbing.
---
pyproject.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index 4d291351d9..810a86349f 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -91,7 +91,7 @@ dev = [{ include-group = "test" }, { include-group = "lint" }]
[tool.scikit-build]
cmake.build-type = "Release"
wheel.py-api = "py3"
-build-dir = "build/{wheel_tag}"
+build-dir = "build"
# Wheel configuration
wheel.packages = ["python/tvm"]