From 7fc233f7d3294ae67c8f1878662ae17390693236 Mon Sep 17 00:00:00 2001 From: Inga Ulusoy Date: Fri, 4 Oct 2024 13:27:59 +0200 Subject: [PATCH] try to get scipy installed using uv --- .github/workflows/ci.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a54e534..d0a57f3e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,8 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-22.04,windows-latest,macos-latest] + # os: [ubuntu-22.04,windows-latest,macos-latest] + os: [ubuntu-22.04] python-version: [3.11] steps: - name: Checkout repository @@ -32,14 +33,12 @@ jobs: - name: install openblas on linux if: matrix.os == 'ubuntu-22.04' run: | - sudo apt-get install libopenblas-dev - - name: install openblas on windows - if: matrix.os == 'windows-latest' - run: | - choco install openblas + sudo apt-get install libopenblas-dev meson - name: Install dependencies run: | - pip install -e . + # pip install -e . + python -m pip install uv + uv pip install --system -e . - name: Run pytest test_colors run: | cd ammico