-
-
Notifications
You must be signed in to change notification settings - Fork 187
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
feat: add lint+hint for recipe parsing #2141
Conversation
@conda-forge/core this one is ready for review! |
with tempfile.TemporaryDirectory() as tmpdir: | ||
recipe_file = os.path.join(tmpdir, "meta.yaml") | ||
with open(recipe_file, "w") as f: | ||
f.write(recipe_text) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Souschef modifies the recipe file on parsing? 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Likely not but why take the risk?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome! Only had one small comment but it's non-blocking.
Checklist
news
entrypython conda_smithy/schema.py
)This PR is a good step for moving towards v1 recipes. We'll need recipes to be able to be parsed by CRM in order to try automatic conversion. I also included the bot's parser and the one used by grayskull.
closes #2140