Skip to content

Commit ca748bf

Browse files
authored
replace all mambaforge with miniforge (manubot#521)
merges manubot#521 * replace all mambaforge with miniforge closes manubot#519 * ci/install-spellcheck.sh: fix appveyor error from https://ci.appveyor.com/project/manubot/rootstock/builds/51206619#L577 E: Repository 'http://ppa.launchpad.net/rabbitmq/rabbitmq-erlang/ubuntu jammy InRelease' changed its 'Label' value from 'Latest (26.x) Erlang packages for Ubuntu and Debian' to 'Modern Erlang and Elixir packages for Ubuntu' N: This must be accepted explicitly before updates for this repository can be applied. See apt-secure(8) manpage for details.
1 parent e5b6239 commit ca748bf

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

build/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ To change the options, either edit the YAML files directly or add additional `--
3232
Note: currently, **Windows is not supported**.
3333

3434
The Manubot environment is managed with [conda](https://conda.io).
35-
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).
35+
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`).
3636
Install the environment from [`environment.yml`](environment.yml) by running one of following commands
3737
(from the repository's root directory):
3838

ci/install-spellcheck.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
set -o errexit \
77
-o pipefail
88

9-
sudo apt-get update --yes
9+
# --allow-releaseinfo-change for error on appveyor like "Repository ... changed its 'Label' value"
10+
sudo apt-get update --yes --allow-releaseinfo-change
1011
sudo apt-get install --yes aspell aspell-en
1112
wget --directory-prefix=build/pandoc/filters \
1213
https://github.com/pandoc/lua-filters/raw/13c3fa7e97206413609a48a82575cb43137e037f/spellcheck/spellcheck.lua

ci/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
set -o errexit \
88
-o pipefail
99

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

0 commit comments

Comments
 (0)