From fa57dde7827597978676b649093931ad5253abbc Mon Sep 17 00:00:00 2001 From: Jim Crist-Harif Date: Thu, 18 Dec 2025 15:33:16 -0600 Subject: [PATCH] Don't fail on `cuda.core.experimental` deprecation warnings --- python/cuml/pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/cuml/pyproject.toml b/python/cuml/pyproject.toml index 913fd89eff..61c1120652 100644 --- a/python/cuml/pyproject.toml +++ b/python/cuml/pyproject.toml @@ -64,6 +64,8 @@ filterwarnings = [ "ignore:Estimator .* does not inherit from.*:UserWarning", # From numba - GPU under-utilization warnings in tests with small data "ignore::numba.core.errors.NumbaPerformanceWarning", + # numba-cuda makes use of deprecated cuda.core.experimental apis + "ignore:The cuda.core.experimental namespace is deprecated:DeprecationWarning", # Allow informational benchmark warnings (pytest-benchmark plugin) "default::pytest_benchmark.logger.PytestBenchmarkWarning", ]