From 23c9b15b540037446169cdf0ccf50039b5761bdc Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Tue, 13 Dec 2022 09:13:54 -0800 Subject: [PATCH] [HOTFIX] Fix pinnings for dask. (#1082) The pip package pinnings were missed in #1062. Authors: - Vyas Ramasubramani (https://github.com/vyasr) Approvers: - Ben Frederickson (https://github.com/benfred) - GALI PREM SAGAR (https://github.com/galipremsagar) - Corey J. Nolet (https://github.com/cjnolet) --- CHANGELOG.md | 2 +- python/raft-dask/setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17034e7849..4ff454f7a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ - fusedL2NN: Add input alignment checks ([#1045](https://github.com/rapidsai/raft/pull/1045)) [@achirkin](https://github.com/achirkin) - Fix fusedL2NN bug that can happen when the same point appears in both x and y ([#1040](https://github.com/rapidsai/raft/pull/1040)) [@Nyrio](https://github.com/Nyrio) - Fix trivial deprecated header includes ([#1034](https://github.com/rapidsai/raft/pull/1034)) [@achirkin](https://github.com/achirkin) -- Suppres ptxas stack size warning in Debug mode ([#1033](https://github.com/rapidsai/raft/pull/1033)) [@tfeher](https://github.com/tfeher) +- Suppress ptxas stack size warning in Debug mode ([#1033](https://github.com/rapidsai/raft/pull/1033)) [@tfeher](https://github.com/tfeher) - Don't use CMake 3.25.0 as it has a FindCUDAToolkit show stopping bug ([#1029](https://github.com/rapidsai/raft/pull/1029)) [@robertmaynard](https://github.com/robertmaynard) - Fix for gemmi deprecation ([#1020](https://github.com/rapidsai/raft/pull/1020)) [@lowener](https://github.com/lowener) - Remove make_mdspan template for memory_type enum ([#1005](https://github.com/rapidsai/raft/pull/1005)) [@wphicks](https://github.com/wphicks) diff --git a/python/raft-dask/setup.py b/python/raft-dask/setup.py index bef3f41b4b..3171867928 100644 --- a/python/raft-dask/setup.py +++ b/python/raft-dask/setup.py @@ -26,10 +26,10 @@ "numpy", "numba>=0.49", "joblib>=0.11", - "dask-cuda>=22.10", - "dask>=2022.9.1", + "dask-cuda==22.12", + "dask==2022.11.1", f"ucx-py{cuda_suffix}", - "distributed>=2022.9.1", + "distributed==2022.11.1", f"pylibraft{cuda_suffix}", ]