From 77241136ad60d59ef462a8c506bdfd8bf216e388 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Mon, 23 Sep 2024 11:25:16 -0700 Subject: [PATCH] explicitly pin fmt and spdlog in test environment --- dependencies.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/dependencies.yaml b/dependencies.yaml index d176e382ad..d40d90807c 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -140,12 +140,12 @@ dependencies: packages: - c-compiler - cxx-compiler - - fmt>=11.0.2,<12 + - &fmt fmt>=11.0.2,<12 - libcumlprims==24.10.*,>=0.0.0a0 - libraft==24.10.*,>=0.0.0a0 - libraft-headers==24.10.*,>=0.0.0a0 - librmm==24.10.*,>=0.0.0a0 - - spdlog>=1.14.1,<1.15 + - &spdlog spdlog>=1.14.1,<1.15 specific: - output_types: conda matrices: @@ -520,6 +520,8 @@ dependencies: - setuptools # Needed on Python 3.12 for dask-glm, which requires pkg_resources but Python 3.12 doesn't have setuptools by default - output_types: conda packages: + - *fmt + - *spdlog - pip - pip: - dask-glm==0.3.0 @@ -538,3 +540,7 @@ dependencies: - *scikit_learn - seaborn - xgboost + - output_types: conda + packages: + - *fmt + - *spdlog