From 3f8b6399ea45104c05e8cfdf7cb36f27f6249f19 Mon Sep 17 00:00:00 2001 From: Kyle Edwards Date: Wed, 5 Aug 2026 15:37:27 -0400 Subject: [PATCH 1/2] Require DFG >=1.22 In order for projects to use the new `constraints` output type in v1.22.0, we have to ensure that rapids-dependency-file-generator is always v1.22.0 or greater. Contributes to https://github.com/rapidsai/build-planning/issues/311 --- features/src/rapids-build-utils/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/src/rapids-build-utils/install.sh b/features/src/rapids-build-utils/install.sh index d03610719..e4abee156 100644 --- a/features/src/rapids-build-utils/install.sh +++ b/features/src/rapids-build-utils/install.sh @@ -46,7 +46,7 @@ fi python3 -m pip install "${_PIP_INSTALL_ARGS[@]}" "${_PIP_UPGRADE_ARGS[@]}" pip; # Install RAPIDS dependency file generator, conda-merge, and toml python3 -m pip install "${_PIP_INSTALL_ARGS[@]}" \ - 'rapids-dependency-file-generator' \ + 'rapids-dependency-file-generator==1.*,>=1.22' \ conda-merge \ toml; From 9bdaa65154440b6e06b5f894428f5fd475c1e94e Mon Sep 17 00:00:00 2001 From: Kyle Edwards Date: Wed, 5 Aug 2026 15:39:13 -0400 Subject: [PATCH 2/2] Bump version --- features/src/rapids-build-utils/devcontainer-feature.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/src/rapids-build-utils/devcontainer-feature.json b/features/src/rapids-build-utils/devcontainer-feature.json index 8fac14785..0411b0644 100644 --- a/features/src/rapids-build-utils/devcontainer-feature.json +++ b/features/src/rapids-build-utils/devcontainer-feature.json @@ -1,7 +1,7 @@ { "name": "NVIDIA RAPIDS devcontainer build utilities", "id": "rapids-build-utils", - "version": "26.10.2", + "version": "26.10.3", "description": "A feature to install the RAPIDS devcontainer build utilities", "containerEnv": { "BASH_ENV": "/etc/bash.bash_env"