Skip to content

Commit

Permalink
Merge branch 'main' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
jjerphan authored Oct 15, 2024
2 parents 6f58c13 + 5e30f9f commit faf37d3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/user_guide/micromamba.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Quickstarts
config Configuration of micromamba
info Information about micromamba
constructor Commands to support using micromamba in constructor
env List environments
env See `mamba/micromamba env --help`.
activate Activate an environment
run Run an executable in an environment
ps Show, inspect or kill running processes
Expand Down
2 changes: 1 addition & 1 deletion libmamba/data/mamba.fish
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ __fish_mamba_complete_subcmds '__fish_mamba_has_command' '
config Configuration of micromamba
info Information about micromamba
constructor Commands to support using micromamba in constructor
env List environments
env Access information about environments
activate Activate an environment
run Run an executable in an environment
ps Show, inspect or kill running processes
Expand Down
2 changes: 1 addition & 1 deletion micromamba/src/umamba.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ set_umamba_command(CLI::App* com, mamba::Configuration& config)
);
set_constructor_command(constructor_subcom, config);

CLI::App* env_subcom = com->add_subcommand("env", "List environments");
CLI::App* env_subcom = com->add_subcommand("env", "Access information about environments");
set_env_command(env_subcom, config);

CLI::App* activate_subcom = com->add_subcommand("activate", "Activate an environment");
Expand Down
2 changes: 2 additions & 0 deletions micromamba/tests/test_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,8 @@ def test_env_update_conda_forge_with_pypi(tmp_home, tmp_root_prefix, tmp_path):
channels:
- conda-forge
dependencies:
# This version of Python covers all the versions of numpy available on conda-forge and PyPI for all platforms.
- python 3.12
- pip
- pip:
- numpy==1.26.4
Expand Down

0 comments on commit faf37d3

Please sign in to comment.