Skip to content
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

docs: run_export -> run_exports plural in help message #928

Merged
merged 4 commits into from
Nov 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bioconda_utils/lint/check_build_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def check_deps(self, deps):


class missing_run_exports(LintCheck):
"""Recipe should have a run_export statement that ensures correct pinning in downstream packages
"""Recipe should have a run_exports statement that ensures correct pinning in downstream packages

This ensures that the package is automatically pinned to a compatible version if
it is used as a dependency in another recipe.
Expand Down Expand Up @@ -187,7 +187,7 @@ class missing_run_exports(LintCheck):
https://github.com/bioconda/bioconda-utils/blob/master/bioconda_utils/bioconda_utils-conda_build_config.yaml

Finally, note that conda is unable to conduct such pinnings in case the dependency and the depending recipe
are updated within the same pull request. Hence, the pull request adding the run_export statement
are updated within the same pull request. Hence, the pull request adding the run_exports statement
has to be merged before the one updating or creating the depending recipe is created.

**Importantly** note that this shall not be used to pin compatible versions of other recipes in the current recipe.
Expand Down