From cda8ff1d9e977d255fb5862a0d5003cd7ffaa81d Mon Sep 17 00:00:00 2001 From: ptaylor Date: Tue, 31 Mar 2026 17:38:45 -0700 Subject: [PATCH 1/5] install libgrpc-dev into pip devcontainers for cuopt --- .devcontainer/rapids.Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.devcontainer/rapids.Dockerfile b/.devcontainer/rapids.Dockerfile index c64c52b8..0355b3fa 100644 --- a/.devcontainer/rapids.Dockerfile +++ b/.devcontainer/rapids.Dockerfile @@ -26,6 +26,7 @@ RUN apt update -y \ libboost-iostreams-dev \ libboost-serialization-dev \ libboost-program-options-dev \ + libgrpc-dev \ && rm -rf /tmp/* /var/tmp/* /var/cache/apt/* /var/lib/apt/lists/*; ENV DEFAULT_VIRTUAL_ENV=rapids From 4c769ee1b7d4028727fe8b4867eee0393f41d83b Mon Sep 17 00:00:00 2001 From: ptaylor Date: Tue, 31 Mar 2026 17:55:05 -0700 Subject: [PATCH 2/5] install libgrpc++-dev --- .devcontainer/rapids.Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.devcontainer/rapids.Dockerfile b/.devcontainer/rapids.Dockerfile index 0355b3fa..6a546b06 100644 --- a/.devcontainer/rapids.Dockerfile +++ b/.devcontainer/rapids.Dockerfile @@ -27,6 +27,7 @@ RUN apt update -y \ libboost-serialization-dev \ libboost-program-options-dev \ libgrpc-dev \ + libgrpc++-dev \ && rm -rf /tmp/* /var/tmp/* /var/cache/apt/* /var/lib/apt/lists/*; ENV DEFAULT_VIRTUAL_ENV=rapids From b86b23923b44db1b60dd8eff800fb92e8d54e6af Mon Sep 17 00:00:00 2001 From: ptaylor Date: Tue, 31 Mar 2026 18:09:57 -0700 Subject: [PATCH 3/5] install libprotobuf-dev and protobuf-compiler-grpc --- .devcontainer/rapids.Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.devcontainer/rapids.Dockerfile b/.devcontainer/rapids.Dockerfile index 6a546b06..064296ce 100644 --- a/.devcontainer/rapids.Dockerfile +++ b/.devcontainer/rapids.Dockerfile @@ -28,6 +28,8 @@ RUN apt update -y \ libboost-program-options-dev \ libgrpc-dev \ libgrpc++-dev \ + libprotobuf-dev \ + protobuf-compiler-grpc \ && rm -rf /tmp/* /var/tmp/* /var/cache/apt/* /var/lib/apt/lists/*; ENV DEFAULT_VIRTUAL_ENV=rapids From 4305b5ba47ec3e46d7c928e64bd9cc847b89f72a Mon Sep 17 00:00:00 2001 From: ptaylor Date: Wed, 1 Apr 2026 22:01:58 -0700 Subject: [PATCH 4/5] set PYTHON_VERSION=3.13 for cuml --- .github/workflows/build-all-rapids-repos.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-all-rapids-repos.yml b/.github/workflows/build-all-rapids-repos.yml index bc14b89c..8279d063 100644 --- a/.github/workflows/build-all-rapids-repos.yml +++ b/.github/workflows/build-all-rapids-repos.yml @@ -53,6 +53,7 @@ jobs: # 3. Enable debug logging to track cache misses # 4. Never fallback to locally compiling env: | + PYTHON_VERSION=3.13 CONDA_ENV_CREATE_QUIET=1 INCLUDE_REPOS="${{ matrix.libs }}" PARALLEL_LEVEL=0 From a8fd9a2a2dc4f79056510472a131b2ebb23b6ab0 Mon Sep 17 00:00:00 2001 From: ptaylor Date: Wed, 1 Apr 2026 23:17:51 -0700 Subject: [PATCH 5/5] set PYTHON_VERSION=3.13 for cuml --- .github/workflows/test-rapids-build-times.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test-rapids-build-times.yml b/.github/workflows/test-rapids-build-times.yml index 2cb6b6d6..020d4a04 100644 --- a/.github/workflows/test-rapids-build-times.yml +++ b/.github/workflows/test-rapids-build-times.yml @@ -60,6 +60,7 @@ jobs: # 3. Enable debug logging to track cache misses # 4. Never fallback to locally compiling env: | + PYTHON_VERSION=3.13 CONDA_ENV_CREATE_QUIET=1 PARALLEL_LEVEL=0 SCCACHE_IDLE_TIMEOUT=0