We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4da997c + 49ae760 commit fdcf3a9Copy full SHA for fdcf3a9
1 file changed
conda_forge_tick/models/node_attributes.py
@@ -295,13 +295,13 @@ def check_version_match(self) -> Self:
295
for output in self.meta_yaml.outputs or []:
296
if output.version is None:
297
raise ValueError(
298
- "If the `top-level version` field is None, all outputs must specify their own versions."
+ "If the top-level `version` field is None, all outputs must specify their own versions."
299
)
300
output_versions.add(output.version)
301
302
if self.version not in output_versions:
303
304
- "The to[-level ]`version` field must match at least one of the `outputs[].version` fields "
+ "The top-level `version` field must match at least one of the `outputs[].version` fields "
305
"in the `meta_yaml` field."
306
307
return self
0 commit comments