From b835eb821ea1469e72a9f230690ada497d4241bd Mon Sep 17 00:00:00 2001 From: Andy Lee Date: Mon, 11 Aug 2025 14:15:26 -0700 Subject: [PATCH] fix: use absolute path for find-links and upgrade backend version - Use GITHUB_WORKSPACE for absolute path to ensure find-links works - Upgrade leann-backend-hnsw to 0.2.8 to match leann-core version --- packages/leann-backend-hnsw/pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/leann-backend-hnsw/pyproject.toml b/packages/leann-backend-hnsw/pyproject.toml index c3657e6..0b1f04d 100644 --- a/packages/leann-backend-hnsw/pyproject.toml +++ b/packages/leann-backend-hnsw/pyproject.toml @@ -6,10 +6,10 @@ build-backend = "scikit_build_core.build" [project] name = "leann-backend-hnsw" -version = "0.2.7" +version = "0.2.8" description = "Custom-built HNSW (Faiss) backend for the Leann toolkit." dependencies = [ - "leann-core==0.2.7", + "leann-core==0.2.8", "numpy", "pyzmq>=23.0.0", "msgpack>=1.0.0",