Skip to content

Commit

Permalink
Update rmm conda recipe pinning of librmm (#738)
Browse files Browse the repository at this point in the history
Ensure `rmm` conda packages are pinned to use the same build offset for `librmm`. This prevents issues where different versions of `rmm` and `librmm` are solved to currently causing breaks in builds and testing for this library and others. The new pinning will pair the packages together so only a complete pair will solve going forward.

Authors:
  - Mike Wendt (@mike-wendt)

Approvers:
  - Ray Douglass (@raydouglass)

URL: #738
  • Loading branch information
mike-wendt authored Mar 30, 2021
1 parent 1de6b83 commit 9d1ba02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conda/recipes/rmm/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2019-2020, NVIDIA CORPORATION.
# Copyright (c) 2019-2021, NVIDIA CORPORATION.

{% set version = environ.get('GIT_DESCRIBE_TAG', '0.0.0.dev').lstrip('v') + environ.get('VERSION_SUFFIX', '') %}
{% set py_version=environ.get('CONDA_PY', 35) %}
Expand All @@ -23,7 +23,7 @@ requirements:
- cmake >=3.14.0
host:
- python
- librmm {{ version }}
- librmm {{ version }}=*_{{ GIT_DESCRIBE_NUMBER }}
- setuptools
- cython >=0.29,<0.30
- spdlog=1.7.0
Expand Down

0 comments on commit 9d1ba02

Please sign in to comment.