Skip to content

Commit

Permalink
Merge branch 'branch-25.02' into use-cuda-bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice authored Jan 23, 2025
2 parents 3c65885 + bd7c69e commit 37eb8cb
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-118_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ dependencies:
- nbsphinx
- ninja
- nltk
- numba>=0.57
- numba>=0.59.1,<0.61.0a0
- numpy>=1.23,<3.0a0
- numpydoc
- nvcc_linux-64=11.8
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-125_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dependencies:
- nbsphinx
- ninja
- nltk
- numba>=0.57
- numba>=0.59.1,<0.61.0a0
- numpy>=1.23,<3.0a0
- numpydoc
- packaging
Expand Down
2 changes: 1 addition & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ dependencies:
packages:
- dask-cuda==25.2.*,>=0.0.0a0
- joblib>=0.11
- numba>=0.57
- numba>=0.59.1,<0.61.0a0
- numpy>=1.23,<3.0a0
# TODO: Is scipy really a hard dependency, or should
# we make it optional (i.e. an extra for pip
Expand Down
7 changes: 6 additions & 1 deletion python/cuml/cuml/tests/dask/test_dask_logistic_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,12 @@
dask_cudf = gpu_only_import("dask_cudf")
cudf = gpu_only_import("cudf")

pytestmark = pytest.mark.mg
pytestmark = [
pytest.mark.mg,
pytest.mark.skip(
reason="pytest hang https://github.com/rapidsai/cuml/issues/6247"
),
]


def _prep_training_data(c, X_train, y_train, partitions_per_worker):
Expand Down
2 changes: 1 addition & 1 deletion python/cuml/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ dependencies = [
"dask-cuda==25.2.*,>=0.0.0a0",
"dask-cudf==25.2.*,>=0.0.0a0",
"joblib>=0.11",
"numba>=0.57",
"numba>=0.59.1,<0.61.0a0",
"numpy>=1.23,<3.0a0",
"nvidia-cublas",
"nvidia-cufft",
Expand Down

0 comments on commit 37eb8cb

Please sign in to comment.