Skip to content

Address CI warnings to not use nodefaults channel #1898

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ jobs:
miniforge-variant: Miniforge3
miniforge-version: latest
activate-environment: build
channels: conda-forge,nodefaults
channels: conda-forge
conda-remove-defaults: true
python-version: ${{ matrix.python }}

- name: Install conda build
Expand Down Expand Up @@ -263,7 +264,8 @@ jobs:
- uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
channels: conda-forge,nodefaults
channels: conda-forge
conda-remove-defaults: true
activate-environment: ${{ env.TEST_ENV_NAME }}
python-version: ${{ matrix.python }}

Expand Down Expand Up @@ -457,6 +459,9 @@ jobs:

- uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
channels: conda-forge
conda-remove-defaults: true
auto-activate-base: true
activate-environment: ""

Expand Down Expand Up @@ -800,7 +805,8 @@ jobs:
with:
run-post: false
channel-priority: "disabled"
channels: conda-forge,nodefaults
channels: conda-forge
conda-remove-defaults: true
python-version: '3.11'

- name: Install anaconda-client
Expand Down
Loading