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

Avoid mamba issues with updating envs with pip dependencies #188

Merged
merged 4 commits into from
Dec 12, 2023
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 features/src/rapids-build-utils/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "NVIDIA RAPIDS devcontainer build utilities",
"id": "rapids-build-utils",
"version": "24.2.2",
"version": "24.2.3",
"description": "A feature to install the RAPIDS devcontainer build utilities",
"containerEnv": {
"BASH_ENV": "/etc/bash.bash_env"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ make_conda_env() {
&& echo "";

# Update the current conda env + prune libs that were removed
mamba env update -n "${env_name}" -f "${new_env_path}" --prune;
# Use conda instead of mamba due to https://github.com/mamba-org/mamba/issues/3059
conda env update -n "${env_name}" -f "${new_env_path}" --prune --solver=libmamba
fi

cp -a "${new_env_path}" "${old_env_path}";
Expand Down