Skip to content

Commit b2ede75

Browse files
committed
strip the environment
1 parent 5fc419e commit b2ede75

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

Diff for: .github/workflows/main.yaml

+3-5
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,9 @@ jobs:
3232
python-version: ${{ matrix.python-version }}
3333
- name: Install dependencies
3434
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
35+
python -m pip install --upgrade pip
36+
conda install -c bioconda -c conda-forge "fastspar>=0.0.7" armadillo=8 "scipy<=1.10.1,>=1.8.0"
37+
pip install pytest
4038
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
4139
python setup.py install
4240

0 commit comments

Comments
 (0)