From 1a6bd12bb0251e55aca0fa528f13f42bd708be2c Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Tue, 24 Oct 2023 08:40:21 -0700 Subject: [PATCH] Ignore UCX run exports and allow `ucx>=1.14.1,<1.16.0` --- conda/recipes/ucx-py/conda_build_config.yaml | 2 +- conda/recipes/ucx-py/meta.yaml | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/conda/recipes/ucx-py/conda_build_config.yaml b/conda/recipes/ucx-py/conda_build_config.yaml index c2978aa52..e75d76762 100644 --- a/conda/recipes/ucx-py/conda_build_config.yaml +++ b/conda/recipes/ucx-py/conda_build_config.yaml @@ -4,4 +4,4 @@ cxx_compiler_version: - 11 ucx: - - ">=1.14.1,<1.16.0" + - "==1.14.*" diff --git a/conda/recipes/ucx-py/meta.yaml b/conda/recipes/ucx-py/meta.yaml index 1b88500a7..134c56ed5 100644 --- a/conda/recipes/ucx-py/meta.yaml +++ b/conda/recipes/ucx-py/meta.yaml @@ -24,6 +24,8 @@ requirements: build: - {{ compiler('c') }} - {{ compiler('cxx') }} + ignore_run_exports_from: + - ucx host: - python - pip @@ -33,6 +35,7 @@ requirements: {% endfor %} run: - python + - ucx >=1.14.1,<1.16.0 {% for r in data.get("project", {}).get("dependencies", []) %} - {{ r }} {% endfor %}