Skip to content

Commit

Permalink
Merge pull request #1422 from lucascolley/conda-build
Browse files Browse the repository at this point in the history
DOC: mention conda-build dependency
  • Loading branch information
HaoZeke authored Aug 11, 2024
2 parents ee3b187 + ebf0b65 commit d791c1d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion asv/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,8 @@ def get_environment_class_by_name(environment_type):
tool_names = [cls.tool_name for cls in util.iter_subclasses(Environment)]
raise EnvironmentUnavailable(
f"Unknown environment type '{environment_type}'. "
f"Allowed values based on existing plugins are {tool_names}."
f"Allowed values based on existing plugins are {tool_names}. "
f"If you are trying to use `mamba`, you may need to install `conda-build`."
)


Expand Down
1 change: 1 addition & 0 deletions docs/source/credits.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ The rest of the contributors are listed in alphabetical order.
- Kacper Kowalik (Xarthisius)
- Kevin Anderson
- @Leenkiz
- Lucas Colley
- Lucy Jiménez
- Marc Garcia
- @mariamadronah
Expand Down
3 changes: 2 additions & 1 deletion docs/source/installing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ the ``python`` requirements are as noted in the ``pyproject.toml``.
For managing the environments, one of the following packages is required:

- `libmambapy <https://mamba.readthedocs.io/en/latest/python_api.html>`__,
which is typically part of ``mamba``. In this case ``conda`` must be present too.
which is typically part of ``mamba``. In this case ``conda`` and ``conda-build``
must be present too.

- `virtualenv <http://virtualenv.org/>`__, which is required since
venv is not compatible with other versions of Python.
Expand Down

0 comments on commit d791c1d

Please sign in to comment.