Skip to content
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

Remove usage of defaults conda channel #1487

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion planemo/conda.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
if TYPE_CHECKING:
from planemo.cli import PlanemoCliContext

BEST_PRACTICE_CHANNELS = ["conda-forge", "bioconda", "defaults"]
BEST_PRACTICE_CHANNELS = ["conda-forge", "bioconda"]


def build_conda_context(ctx: "PlanemoCliContext", **kwds) -> CondaContext:
Expand Down
6 changes: 3 additions & 3 deletions planemo/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ def conda_ensure_channels_option():
use_global_config=True,
use_env_var=True,
help=("Ensure conda is configured with specified comma separated " "list of channels."),
default="conda-forge,bioconda,defaults",
default="conda-forge,bioconda",
)


Expand All @@ -637,7 +637,7 @@ def conda_auto_init_option():
default=True,
help=(
"Conda dependency resolution for Galaxy will auto install "
"conda itself using miniconda if not availabe on conda_prefix."
"conda itself using miniforge if not availabe on conda_prefix."
),
)

Expand Down Expand Up @@ -2061,7 +2061,7 @@ def mulled_conda_option():
default=None,
help=(
"Install a specific version of Conda before running the command, by "
"default the version that comes with the continuumio miniconda3 image "
"default the version that comes with the miniforge image "
"will be used under Linux and under Mac OS X Conda will be upgraded to "
"to work around a bug in 4.2."
),
Expand Down
Loading