-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inline conda_build_config
values to rattler-build recipes
#153
Comments
Do recipes written for Like can those recipes use YAML anchors or passed-in variables or Jinja Asking because It uses For example, in cuda11_libcurand_run_version:
- ">=10.2.5.43,<10.3.1" (raft/conda/recipes/libraft/conda_build_config.yaml) And in - libcurand {{ cuda11_libcurand_run_version }}
- libcurand-dev {{ cuda11_libcurand_run_version }} (raft/conda/recipes/libraft/meta.yaml) Just commenting to challenge the assumption that |
Yeah, we can set these in the |
For the record, this is equally possible with the legacy conda-build recipe format using top-level Jinja variables (like we do for the version etc). We simply chose not to do it that way (the decision predates me so I don't actually know why). |
As noted in rapidsai/rmm#1796 (comment)
the RAPIDS conda builds do not use variants (excepting
ucxx
)We currently list the variants because the compiler version is dependent on the
CUDA version. This restriction will go away once we drop CUDA 11 support. At
that point, we should stop using the
conda_build_config.yaml
files and inlinethe values there into the
recipe.yaml
file.The text was updated successfully, but these errors were encountered: