-
-
Notifications
You must be signed in to change notification settings - Fork 350
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #361 from hmaarrfk/fixup_2209
Update to conda 22.9 with tests for boa compatibility
- Loading branch information
Showing
6 changed files
with
31 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,16 +12,17 @@ cd "${CONSTRUCT_ROOT}" | |
# Constructor should be latest for non-native building | ||
# See https://github.com/conda/constructor | ||
echo "***** Install constructor *****" | ||
conda install -y "constructor>=3.3.1" jinja2 curl libarchive -c conda-forge --override-channels | ||
|
||
conda install --yes \ | ||
--channel conda-forge --override-channels \ | ||
jinja2 curl libarchive \ | ||
"constructor>=3.3.1" | ||
if [[ "$(uname)" == "Darwin" ]]; then | ||
conda install -y coreutils -c conda-forge --override-channels | ||
conda install --yes coreutils --channel conda-forge --override-channels | ||
fi | ||
# shellcheck disable=SC2154 | ||
if [[ "${TARGET_PLATFORM}" == win-* ]]; then | ||
conda install -y "nsis=3.01" -c conda-forge --override-channels | ||
conda install --yes "nsis=3.01" --channel conda-forge --override-channels | ||
fi | ||
# pip install git+git://github.com/conda/[email protected]#egg=constructor --force --no-deps | ||
conda list | ||
|
||
echo "***** Make temp directory *****" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters