You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Applying conda configuration after update...
##############################################
This results in warnings:
C:\windows\system32\cmd.exe /D /S /C "C:\Miniconda3\condabin\conda.bat config --add channels conda-forge"
##[warning]Warning: 'conda-forge' already in 'channels' list, moving to the top
Warning: 'conda-forge' already in 'channels' list, moving to the top
C:\windows\system32\cmd.exe /D /S /C "C:\Miniconda3\condabin\conda.bat config --add channels conda-forge/label/testing"
##[warning]Warning: 'conda-forge/label/testing' already in 'channels' list, moving to the top
Warning: 'conda-forge/label/testing' already in 'channels' list, moving to the top
The problem is that these warnings appear in the top-level output of my workflow, which is kinda of annoying since they will never go away. Here's my config if it helps:
- name: Set up Python ${{ matrix.python-version }}uses: goanpeca/setup-miniconda@v1with:
auto-update-conda: trueminiconda-version: "latest"python-version: ${{ matrix.python-version }}channel-priority: strictchannels: conda-forge/label/testing,conda-forgeshow-channel-urls: trueuse-only-tar-bz2: true
The text was updated successfully, but these errors were encountered:
I'm seeing channels being added twice with this action, once under:
and another under:
This results in warnings:
The problem is that these warnings appear in the top-level output of my workflow, which is kinda of annoying since they will never go away. Here's my config if it helps:
The text was updated successfully, but these errors were encountered: