Skip to content

Commit 6ff72a5

Browse files
authored
use MINIFORGE_VERSION so the conda version doesn't make its way into the image tag (#660)
1 parent f920afe commit 6ff72a5

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

features/src/mambaforge/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Mambaforge",
33
"id": "mambaforge",
4-
"version": "26.4.1",
4+
"version": "26.4.2",
55
"description": "A feature to install mambaforge",
66
"options": {
77
"version": {

features/src/mambaforge/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/env bash
22
set -e
33

4-
MINIFORGE_VERSION="${VERSION:-latest}";
4+
MINIFORGE_VERSION="${VERSION:-${MINIFORGE_VERSION:-latest}}";
55

66
# Ensure we're in this feature's directory during build
77
cd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )";

matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ x-nvhpc-curr: &nvhpc_curr { name: "nvhpc", version: "26.1" }
3333

3434
x-nvhpc-env: &nvhpc_env { CC: "nvc", CXX: "nvc++", CUDAHOSTCXX: "nvc++" }
3535

36-
x-mambaforge: &conda { name: "mambaforge", version: "25.11.0-1" }
36+
x-mambaforge: &conda { name: "mambaforge", miniforge_version: "25.11.0-1" }
3737
x-python: &python { name: "ghcr.io/devcontainers/features/python:1.7.1", version: "os-provided", installTools: false, enableShared: true, optimize: true, hide: true }
3838
x-python-rapids: &python_rapids { name: "ghcr.io/devcontainers/features/python:1.7.1", version: "3.13", installTools: false, enableShared: true, optimize: true, hide: true }
3939
x-ucx-rapids: &ucx_rapids { name: "ucx", version: "1.19.0" }

0 commit comments

Comments
 (0)