From c95d821ea0b814e9a35f53244594326262c3cdaf Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Wed, 25 Oct 2023 07:53:59 -0700 Subject: [PATCH] Relax ucx pinning (#1927) The latest builds of libarrow are built against ucx 1.15, so the upper bound constraint in raft is causing failures downstream when conda tries to solve environments containing both raft-dask and other packages that transitively bring in ucx via libarrow (namely cudf). This PR also bumps the minimum requirement to 1.14.1 to match ucx-py. Authors: - Vyas Ramasubramani (https://github.com/vyasr) Approvers: - Peter Andreas Entschev (https://github.com/pentschev) - Ray Douglass (https://github.com/raydouglass) URL: https://github.com/rapidsai/raft/pull/1927 --- conda/recipes/raft-dask/conda_build_config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda/recipes/raft-dask/conda_build_config.yaml b/conda/recipes/raft-dask/conda_build_config.yaml index e36adf2551..d89dbae4df 100644 --- a/conda/recipes/raft-dask/conda_build_config.yaml +++ b/conda/recipes/raft-dask/conda_build_config.yaml @@ -14,7 +14,7 @@ sysroot_version: - "2.17" ucx_version: - - ">=1.13.0,<1.15.0" + - ">=1.14.1,<1.16.0" ucx_py_version: - "0.35.*"