Skip to content

Commit e3c095d

Browse files
Force conda to version 22.9 everywhere
1 parent bd59912 commit e3c095d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

scripts/build.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ CONSTRUCT_ROOT="${CONSTRUCT_ROOT:-${PWD}}"
1010
cd "${CONSTRUCT_ROOT}"
1111

1212
echo "***** Install libmamba solver *****"
13-
conda install -y conda=22.9
14-
conda install conda-libmamba-solver
13+
conda install -y conda=22.9 # Constructor doesn't support plugin structure of conda yet (22.11), so stick to 22.9
14+
conda install conda=22.9 conda-libmamba-solver
1515
conda config --set experimental_solver libmamba
1616

1717
echo "***** Install constructor *****"
18-
conda install -y conda-standalone menuinst freetype jinja2 curl libarchive "ruamel_yaml>=0.11.14,<0.16" -c conda-forge --override-channels
18+
conda install -y conda=22.9 conda-standalone menuinst freetype jinja2 curl libarchive "ruamel_yaml>=0.11.14,<0.16" -c conda-forge --override-channels
1919

2020
if [[ "$(uname)" == "Darwin" ]]; then
21-
conda install -y coreutils -c conda-forge --override-channels
21+
conda install -y conda=22.9 coreutils -c conda-forge --override-channels
2222
fi
2323
# shellcheck disable=SC2154
2424
if [[ "${TARGET_PLATFORM}" == win-* ]]; then
25-
conda install -y "nsis=3.01" "pillow>=3.1" -c conda-forge --override-channels
25+
conda install -y conda=22.9 "nsis=3.01" "pillow>=3.1" -c conda-forge --override-channels
2626
fi
2727

2828
# We require the latest, unreleased version of constructor,

0 commit comments

Comments
 (0)