-
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
Add missing setuptools
to conda recipe
#1418
Add missing setuptools
to conda recipe
#1418
Conversation
conda/recipes/dask-cuda/meta.yaml
Outdated
@@ -30,6 +30,7 @@ requirements: | |||
- python | |||
- pip | |||
- rapids-build-backend>=0.3.0,<0.4.0.dev0 | |||
- setuptools |
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.
- setuptools | |
- setuptools>=64.0.0 |
Let's please match the floor in
Line 78 in d70f28d
- setuptools>=64.0.0 |
Somewhere around the 64.0.0 release (don't remember exactly where) is where setuptools
added support for pyproject.toml
, which we rely on.
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.
Thanks! I think this will fix the issue you observed in https://github.com/rapidsai/dask-cuda/actions/runs/12366711202/job/34513856325.
And is appropriate given that setuptools
is the backend for this package:
Line 137 in d70f28d
build-backend = "setuptools.build_meta" |
I guess we must have been getting it transitively from other packages before.
Thanks @jameslamb ! |
/merge |
Conda builds are failing due to missing
setuptools
, this change add the missing dependency to fix the failure.