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 9432896 [CMAKE] Fix packaging 3rdparty (#18)
9432896 is described below
commit 943289686340fc04bc15ec3b377bff22a1839bab
Author: Tianqi Chen <[email protected]>
AuthorDate: Tue Sep 16 21:09:39 2025 -0400
[CMAKE] Fix packaging 3rdparty (#18)
This PR fixes packaging for 3rdparty
---
CMakeLists.txt | 4 ++--
pyproject.toml | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2767669..9580f20 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -231,10 +231,10 @@ if (TVM_FFI_BUILD_PYTHON_MODULE)
########## Installing the source ##########
install(
- DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/dlpack/include DESTINATION
3rdparty/dlpack/include
+ DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/dlpack/include/ DESTINATION
3rdparty/dlpack/include/
)
install(
- DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/libbacktrace DESTINATION
3rdparty/libbacktrace
+ DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/libbacktrace/ DESTINATION
3rdparty/libbacktrace/
PATTERN ".git" EXCLUDE
PATTERN ".git*" EXCLUDE
PATTERN "*.tmp" EXCLUDE
diff --git a/pyproject.toml b/pyproject.toml
index 6c0c490..e047529 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -17,7 +17,7 @@
[project]
name = "apache-tvm-ffi"
-version = "0.1.0b2"
+version = "0.1.0b3"
description = "tvm ffi"
authors = [{ name = "TVM FFI team" }]