From e9c2ca7936baa8573f36a7ef346fa1ee2b0aef34 Mon Sep 17 00:00:00 2001 From: Andy Lee Date: Fri, 25 Jul 2025 10:37:06 -0700 Subject: [PATCH] fix: remove cmake.verbose from scikit-build config - cmake.verbose is not allowed when minimum-version is set to 0.10 or higher - This was causing build failures in cibuildwheel --- packages/leann-backend-hnsw/pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/leann-backend-hnsw/pyproject.toml b/packages/leann-backend-hnsw/pyproject.toml index 7e300fe..55a3f6d 100644 --- a/packages/leann-backend-hnsw/pyproject.toml +++ b/packages/leann-backend-hnsw/pyproject.toml @@ -20,7 +20,6 @@ wheel.exclude = ["CMakeLists.txt", "src", "third_party"] sdist.include = ["CMakeLists.txt", "src", "third_party", "leann_backend_hnsw/*.txt"] cmake.args = ["-DCMAKE_BUILD_TYPE=Release"] # 确保 CMake 可以找到系统库 -cmake.verbose = true build-dir = "build/{cache_tag}" minimum-version = "build-system.requires"