diff --git a/.github/ISSUE_TEMPLATE/bump_gmt_checklist.md b/.github/ISSUE_TEMPLATE/bump_gmt_checklist.md index 128d247c9ff..5387e91eeba 100644 --- a/.github/ISSUE_TEMPLATE/bump_gmt_checklist.md +++ b/.github/ISSUE_TEMPLATE/bump_gmt_checklist.md @@ -10,7 +10,7 @@ assignees: '' :tada: [GMT X.Y.Z](https://github.com/GenericMappingTools/gmt/releases/tag/X.Y.Z) has been released! It is installable from the [conda-forge channel](https://anaconda.org/conda-forge/gmt/files) using the following command: -`conda install -c conda-forge gmt=X.Y.Z` +`mamba install -c conda-forge gmt=X.Y.Z` diff --git a/.github/workflows/style_checks.yaml b/.github/workflows/style_checks.yaml index 14eed1e9aea..908485a9114 100644 --- a/.github/workflows/style_checks.yaml +++ b/.github/workflows/style_checks.yaml @@ -18,7 +18,7 @@ jobs: - name: Checkout uses: actions/checkout@v3.3.0 - # Setup Miniconda + # Setup Python - name: Set up Python uses: actions/setup-python@v4.5.0 with: diff --git a/README.rst b/README.rst index 450c01120c0..209c4e24c07 100644 --- a/README.rst +++ b/README.rst @@ -92,13 +92,13 @@ Quickstart Installation ++++++++++++ -Simple installation using `conda `__:: +Simple installation using `mamba `__:: - conda install --channel conda-forge pygmt + mamba install --channel conda-forge pygmt -If you use `mamba `__:: +If you use `conda `__:: - mamba install --channel conda-forge pygmt + conda install --channel conda-forge pygmt For other ways to install ``pygmt``, see `full installation instructions `__. diff --git a/pygmt/__init__.py b/pygmt/__init__.py index 1f0d04ac487..7a9ec8a4cb2 100644 --- a/pygmt/__init__.py +++ b/pygmt/__init__.py @@ -187,12 +187,12 @@ def test(doctest=True, verbose=True, coverage=False, figures=True): Run the test suite. Uses `pytest `__ to discover and run the tests. If you - haven't already, you can install it with `conda - `__ or `pip `__. + haven't already, you can install it with `mamba + `__ or `pip + `__. Parameters ---------- - doctest : bool If ``True``, will run the doctests as well (code examples that start with a ``>>>`` in the docs).