We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e20596 commit 0f12ce7Copy full SHA for 0f12ce7
.github/workflows/build.yml
@@ -26,13 +26,12 @@ jobs:
26
python-version: 3.9
27
auto-activate-base: false
28
channel-priority: strict
29
- 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
30
31
- name: Install dependencies with Conda
32
run: |
33
- echo "Creating Conda environment with Python 3.9"
34
- conda create --name compas_wood_3_9_10 python=3.9 compas -c conda-forge
35
- conda activate compas_wood_3_9_10
+ echo "Installing COMPAS and other dependencies..."
+ conda install compas -c conda-forge
36
37
- name: Install dependencies with pip
38
0 commit comments