From d0f9f0e42e22cce3dc12cfd31e524a690bb092b7 Mon Sep 17 00:00:00 2001 From: John Sterrett Date: Thu, 5 Sep 2024 14:43:45 -0600 Subject: [PATCH] specify channels for conda --- .github/workflows/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 9d71b61..bc11140 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -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" + conda install -c bioconda -c conda-forge "fastspar>=0.0.7" armadillo=8 "scipy<=1.10.1,>=1.8.0" python setup.py install - name: Test with pytest