We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fc419e commit b2ede75Copy full SHA for b2ede75
.github/workflows/main.yaml
@@ -32,11 +32,9 @@ jobs:
32
python-version: ${{ matrix.python-version }}
33
- name: Install dependencies
34
run: |
35
- sudo apt-get update
36
- sudo apt-get install -y conda
37
- conda create -n test-env python=${{ matrix.python-version }} -y
38
- conda activate test-env
39
- conda install -c bioconda -c conda-forge pip pytest fastspar>=0.0.7 armadillo=8 "scipy<=1.10.1,>=1.8.0" numpy networkx biom-format pandas scikit-bio statsmodels h5py
+ python -m pip install --upgrade pip
+ conda install -c bioconda -c conda-forge "fastspar>=0.0.7" armadillo=8 "scipy<=1.10.1,>=1.8.0"
+ pip install pytest
40
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
41
python setup.py install
42
0 commit comments