File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 61
61
key :
62
62
${{ runner.os }}-conda-${{ hashFiles('src/environment-3.11.yml') }}
63
63
64
+ # Mamba currently has problems with dependencies installed from other channels
65
+ # https://github.com/libarchive/libarchive/issues/1857
66
+ # https://github.com/conda-incubator/setup-miniconda/issues/292
67
+ # As temporary workaround we move all preinstalled packages over to conda-forge before installing mamba
64
68
- name : Setup Conda
69
+ uses : conda-incubator/setup-miniconda@v2
70
+ with :
71
+ python-version : ${{ matrix.python }}
72
+ channels : conda-forge
73
+ channel-priority : true
74
+
75
+ - name : Fix mamba
76
+ run : |
77
+ conda upgrade --strict-channel-priority -c conda-forge --all
78
+
79
+ - name : Setup Conda environment
65
80
uses : conda-incubator/setup-miniconda@v2
66
81
with :
67
82
python-version : ${{ matrix.python }}
You can’t perform that action at this time.
0 commit comments