Skip to content

Commit

Permalink
Update requirements that were missed.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Feb 9, 2023
1 parent d1e0d6c commit 93090ee
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion python/pylibraft/_custom_build/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def replace_requirements(func):
def wrapper(config_settings=None):
orig_list = getattr(_orig, func.__name__)(config_settings)
cuda_suffix = os.getenv("RAPIDS_PY_WHEEL_CUDA_SUFFIX", default="")
append_list = [f"rmm{cuda_suffix}==23.2.*"]
append_list = [f"rmm{cuda_suffix}==23.4.*"]
return orig_list + append_list

return wrapper
Expand Down
2 changes: 1 addition & 1 deletion python/pylibraft/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
install_requires = [
"numpy",
"cuda-python>=11.7.1,<12.0",
f"rmm{cuda_suffix}==23.2.*",
f"rmm{cuda_suffix}==23.4.*",
]

extras_require = {
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,11 +26,11 @@
"numpy",
"numba>=0.49",
"joblib>=0.11",
"dask-cuda==23.2.*",
"dask-cuda==23.4.*",
"dask==2023.1.1",
f"ucx-py{cuda_suffix}==0.30.*",
f"ucx-py{cuda_suffix}==0.31.*",
"distributed==2023.1.1",
f"pylibraft{cuda_suffix}==23.2.*",
f"pylibraft{cuda_suffix}==23.4.*",
]

extras_require = {
Expand Down

0 comments on commit 93090ee

Please sign in to comment.