Skip to content

Commit 1ddbd9f

Browse files
authored
More mamba install recommendations (#2412)
Update a few more `conda` references to `mamba` in the main README and other locations that were missed out in #2385.
1 parent 0b5a69b commit 1ddbd9f

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/ISSUE_TEMPLATE/bump_gmt_checklist.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ assignees: ''
1010
:tada: [GMT X.Y.Z](https://github.com/GenericMappingTools/gmt/releases/tag/X.Y.Z) has been released! It is installable from the
1111
[conda-forge channel](https://anaconda.org/conda-forge/gmt/files) using the following command:
1212

13-
`conda install -c conda-forge gmt=X.Y.Z`
13+
`mamba install -c conda-forge gmt=X.Y.Z`
1414

1515
<!-- Please add specific checklist items for the tests, xfail pytest markers, and deprecated syntax that need to be updated. -->
1616

.github/workflows/style_checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Checkout
1919
uses: actions/[email protected]
2020

21-
# Setup Miniconda
21+
# Setup Python
2222
- name: Set up Python
2323
uses: actions/[email protected]
2424
with:

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,13 @@ Quickstart
9292
Installation
9393
++++++++++++
9494

95-
Simple installation using `conda <https://docs.conda.io/projects/conda/en/latest/user-guide/index.html>`__::
95+
Simple installation using `mamba <https://mamba.readthedocs.org/>`__::
9696

97-
conda install --channel conda-forge pygmt
97+
mamba install --channel conda-forge pygmt
9898

99-
If you use `mamba <https://mamba.readthedocs.org/>`__::
99+
If you use `conda <https://docs.conda.io/projects/conda/en/latest/user-guide/index.html>`__::
100100

101-
mamba install --channel conda-forge pygmt
101+
conda install --channel conda-forge pygmt
102102

103103
For other ways to install ``pygmt``, see `full installation instructions <https://www.pygmt.org/latest/install.html>`__.
104104

pygmt/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,12 +187,12 @@ def test(doctest=True, verbose=True, coverage=False, figures=True):
187187
Run the test suite.
188188
189189
Uses `pytest <http://pytest.org/>`__ to discover and run the tests. If you
190-
haven't already, you can install it with `conda
191-
<http://conda.pydata.org/>`__ or `pip <https://pip.pypa.io/en/stable/>`__.
190+
haven't already, you can install it with `mamba
191+
<https://mamba.readthedocs.org/>`__ or `pip
192+
<https://pip.pypa.io/en/stable/>`__.
192193
193194
Parameters
194195
----------
195-
196196
doctest : bool
197197
If ``True``, will run the doctests as well (code examples that start
198198
with a ``>>>`` in the docs).

0 commit comments

Comments
 (0)