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 b9b64e0 chore(build): Add CMake as build dependency (#104)
b9b64e0 is described below
commit b9b64e02e9b9d880c0a8d07337c5a65a19257957
Author: Junru Shao <[email protected]>
AuthorDate: Sun Oct 12 12:32:57 2025 -0700
chore(build): Add CMake as build dependency (#104)
CMake is available in PyPI. As long as it's specified in build
dependency, which is managed automatically, we don't have to mention it
in any tutorials any more.
---
pyproject.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index d09eac5..fcf842a 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -76,7 +76,7 @@ tvm-ffi-config = "tvm_ffi.config:__main__"
tvm-ffi-stubgen = "tvm_ffi.stub.stubgen:__main__"
[build-system]
-requires = ["scikit-build-core>=0.10.0", "cython"]
+requires = ["scikit-build-core>=0.10.0", "cython", "cmake>=3.18"]
build-backend = "scikit_build_core.build"
[tool.scikit-build]