From e845906bb123c7cf42eb97e7427705d1c3548f99 Mon Sep 17 00:00:00 2001 From: James Krieger Date: Fri, 6 Oct 2023 11:50:12 +0200 Subject: [PATCH] always add conda-forge in github actions --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 68ef7639c..c5eab7463 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,7 +26,7 @@ jobs: echo $CONDA/bin >> $GITHUB_PATH - name: Install dependencies run: | - if [[ ${{ matrix.python-version }} == "3.11" ]]; then conda config --add channels conda-forge; fi + conda config --add channels conda-forge conda create --yes -n test python=${{ matrix.python-version }} source activate test conda install --yes numpy scipy nose pyparsing requests pdbfixer