We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88742bf commit 0fcb67bCopy full SHA for 0fcb67b
1 file changed
.github/workflows/main.yml
@@ -111,7 +111,8 @@ jobs:
111
- name: Set up conda executable
112
run: |
113
if [[ "${{ matrix.conda-standalone }}" == "micromamba" ]]; then
114
- conda create -yqp "${{ runner.temp }}/micromamba" -c conda-forge micromamba
+ # Pin to <2.6 due to cache regression: https://github.com/mamba-org/mamba/issues/4250
115
+ conda create -yqp "${{ runner.temp }}/micromamba" -c conda-forge "micromamba<2.6"
116
if [[ "${{ runner.os }}" == "Windows" ]]; then
117
echo "CONSTRUCTOR_CONDA_EXE=${{ runner.temp }}/micromamba/Library/bin/micromamba.exe" >> $GITHUB_ENV
118
else
0 commit comments