From 0f12ce76deaf53c5bfba98863a2650ba81f445d8 Mon Sep 17 00:00:00 2001 From: Petras Vestartas Date: Sun, 21 Apr 2024 23:09:52 +0200 Subject: [PATCH] GITHUB --- .github/workflows/build.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 411b20721..34ce8ae81 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,13 +26,12 @@ jobs: python-version: 3.9 auto-activate-base: false channel-priority: strict - channels: conda-forge,defaults # Add defaults if specific packages are not found in conda-forge + channels: conda-forge,defaults # This ensures conda-forge is used primarily, but defaults can also be accessed - name: Install dependencies with Conda run: | - echo "Creating Conda environment with Python 3.9" - conda create --name compas_wood_3_9_10 python=3.9 compas -c conda-forge - conda activate compas_wood_3_9_10 + echo "Installing COMPAS and other dependencies..." + conda install compas -c conda-forge - name: Install dependencies with pip run: |