From d2aa57c7dd2814e51ed82d547504982961b2eb23 Mon Sep 17 00:00:00 2001 From: Charles Blackmon-Luca <20627856+charlesbluca@users.noreply.github.com> Date: Thu, 1 Feb 2024 09:57:03 -0500 Subject: [PATCH] Bump dask-sql stable version to 2024.1.0 (#623) Looks like all occurences of `DASK_SQL_VER` use the full version tag - should we modify [the logic in the version updating workflow](https://github.com/charlesbluca/docker/blob/12323a46f1a05f80d1e9354b3dbc0e3937227cc4/.github/workflows/update-dask-sql.yml#L49-L53) to reflect this? Authors: - Charles Blackmon-Luca (https://github.com/charlesbluca) Approvers: - Ray Douglass (https://github.com/raydouglass) URL: https://github.com/rapidsai/docker/pull/623 --- Dockerfile | 2 +- matrix.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 802f40f0..61344057 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ARG PYTHON_VER=3.10 ARG LINUX_VER=ubuntu22.04 ARG RAPIDS_VER=24.02 -ARG DASK_SQL_VER=2023.11.0 +ARG DASK_SQL_VER=2024.1.0 # Gather dependency information FROM rapidsai/ci-conda:latest AS dependencies diff --git a/matrix.yaml b/matrix.yaml index 131f772e..d8ee9008 100644 --- a/matrix.yaml +++ b/matrix.yaml @@ -5,4 +5,4 @@ PYTHON_VER: - "3.9" - "3.10" DASK_SQL_VER: - - "2023.11.0" + - "2024.1.0"