From 0d52c233fa96cc3976384316590a357ec014261c Mon Sep 17 00:00:00 2001 From: Inga Ulusoy Date: Wed, 10 Sep 2025 10:36:08 +0200 Subject: [PATCH] fix: try now with mixed pip and uv for better performance while preserving blis binary --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79e8273..5a1dccd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,8 +26,9 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | + pip install uv pip install spacy --no-binary blis # do not compile blis from source - pip install -e .[dev] + uv pip install --system -e .[dev] - name: Run pytest run: | cd ammico