Skip to content

Commit

Permalink
Update conda recipes pinning of repo dependencies (#3666)
Browse files Browse the repository at this point in the history
Ensure all conda packages created in this repo that depend on other packages are all version pinned to the same build number. This way it prevents a conda solve from picking mismatched versions of `cuml` and `libcuml` that can break this repo during builds and testing.

Authors:
  - Mike Wendt (@mike-wendt)

Approvers:
  - Ray Douglass (@raydouglass)
  - Dante Gama Dessavre (@dantegd)

URL: #3666
  • Loading branch information
mike-wendt authored Mar 30, 2021
1 parent 3df57f3 commit edfba64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conda/recipes/cuml/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ requirements:
- cmake>=3.14
- treelite=1.0.0
- cudf {{ minor_version }}
- libcuml={{ version }}
- libcuml={{ version }}=*_{{ GIT_DESCRIBE_NUMBER }}
- libcumlprims {{ minor_version }}
- cudatoolkit {{ cuda_version }}.*
- ucx-py {{ minor_version }}
Expand All @@ -39,7 +39,7 @@ requirements:
- python x.x
- cudf {{ minor_version }}
- dask-cudf {{ minor_version }}
- libcuml={{ version }}
- libcuml={{ version }}=*_{{ GIT_DESCRIBE_NUMBER }}
- libcumlprims {{ minor_version }}
- cupy>=7.8.0,<9.0.0a0
- treelite=1.0.0
Expand Down

0 comments on commit edfba64

Please sign in to comment.