From 96e772987ab35fc1e8ecdcf06b68626f3d3c69eb Mon Sep 17 00:00:00 2001 From: John Sterrett Date: Thu, 5 Sep 2024 14:34:44 -0600 Subject: [PATCH] try mamba install of needed deps --- .github/workflows/main.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 3b024b3..bf906ad 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v3 @@ -35,7 +35,7 @@ jobs: python -m pip install --upgrade pip pip install pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - conda install fastspar>=0.0.7 armadillo=8 scipy<=1.10.1,>=1.8.0 + mamba install "fastspar>=0.0.7" armadillo=8 "scipy<=1.10.1,>=1.8.0" python setup.py install - name: Test with pytest