From 068fb38bae0538490c23ac936a52306915c954a0 Mon Sep 17 00:00:00 2001 From: Andy Lee Date: Mon, 11 Aug 2025 01:28:12 -0700 Subject: [PATCH] fix: ensure leann-core package is built on all platforms, not just Ubuntu This fixes the issue where CI was installing leann-core from PyPI instead of using locally built package with Python 3.9 compatibility fixes. --- .github/workflows/build-reusable.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-reusable.yml b/.github/workflows/build-reusable.yml index 15e1e71..ea39435 100644 --- a/.github/workflows/build-reusable.yml +++ b/.github/workflows/build-reusable.yml @@ -137,11 +137,9 @@ jobs: - name: Build packages run: | # Build core (platform independent) - if [[ "${{ matrix.os }}" == ubuntu-* ]]; then - cd packages/leann-core - uv build - cd ../.. - fi + cd packages/leann-core + uv build + cd ../.. # Build HNSW backend cd packages/leann-backend-hnsw