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

replace all mambaforge with miniforge #521

Merged
merged 2 commits into from
Dec 20, 2024
Merged
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 build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ To change the options, either edit the YAML files directly or add additional `--
Note: currently, **Windows is not supported**.

The Manubot environment is managed with [conda](https://conda.io).
If you do not have `conda` installed, we recommend using the Miniforge3 (includes `conda`) or Mambaforge (includes `conda` and `mamba`) installers from [miniforge](https://github.com/conda-forge/miniforge).
If you do not have `conda` installed, we recommend using the Miniforge3 installer from [miniforge](https://github.com/conda-forge/miniforge) (includes `conda` and `mamba`).
Install the environment from [`environment.yml`](environment.yml) by running one of following commands
(from the repository's root directory):

Expand Down
3 changes: 2 additions & 1 deletion ci/install-spellcheck.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
set -o errexit \
-o pipefail

sudo apt-get update --yes
# --allow-releaseinfo-change for error on appveyor like "Repository ... changed its 'Label' value"
sudo apt-get update --yes --allow-releaseinfo-change
sudo apt-get install --yes aspell aspell-en
wget --directory-prefix=build/pandoc/filters \
https://github.com/pandoc/lua-filters/raw/13c3fa7e97206413609a48a82575cb43137e037f/spellcheck/spellcheck.lua
2 changes: 1 addition & 1 deletion ci/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
set -o errexit \
-o pipefail

wget https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-$(uname)-$(uname -m).sh \
wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh \
--output-document miniforge.sh
bash miniforge.sh -b -p $HOME/miniconda
source $HOME/miniconda/etc/profile.d/conda.sh
Expand Down
Loading