Skip to content

Commit

Permalink
[HOTFIX] Fix pinnings for dask. (#1082)
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
vyasr authored Dec 13, 2022
1 parent 0ec1167 commit 23c9b15
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions python/raft-dask/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}",
]

Expand Down

0 comments on commit 23c9b15

Please sign in to comment.