-
Notifications
You must be signed in to change notification settings - Fork 94
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
Template Conda recipe's requirements/host
#1425
Template Conda recipe's requirements/host
#1425
Conversation
Pull in build dependencies from `pyproject.toml` into Conda's `meta.yaml`.
@@ -29,8 +29,9 @@ requirements: | |||
host: | |||
- python | |||
- pip | |||
- rapids-build-backend>=0.3.0,<0.4.0.dev0 | |||
- setuptools>=64.0.0 | |||
{% for r in data["build-system"]["requires"] %} |
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.
Where is build-system defined? Is it read from
Lines 1 to 6 in afc27f4
[build-system] | |
build-backend = "rapids_build_backend.build" | |
requires = [ | |
"rapids-build-backend>=0.3.0,<0.4.0dev0", | |
"setuptools>=64.0.0", | |
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`. |
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.
Yep exactly
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.
Left a question for my own understanding, but otherwise LGTM. Thanks @jakirkham .
Thanks John! |
/merge |
Thanks Peter and Ray! 🙏 |
Pull in build dependencies from
pyproject.toml
into Conda'smeta.yaml
.