-
Notifications
You must be signed in to change notification settings - Fork 11
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
Resolve dask-sql/distributed build failures #75
Conversation
@@ -34,6 +37,7 @@ RUN cat /rapids.yml \ | |||
|
|||
# need to unpin dask, pyarrow, and uvicorn in python 3.9 environment | |||
RUN cat /dask.yml \ | |||
| sed -r "s/libprotobuf=/libprotobuf>=/g" \ |
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.
Normally it would make more sense to address this conflict directly in dask-sql; however, since it seems like we're generally going to drop this dep soon anyways with dask-contrib/dask-sql#1249 figured a short term unblocker would be good for now
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.
Agreed, a short-term fix is reasonable.
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.
LGTM, thanks @charlesbluca !
@@ -34,6 +37,7 @@ RUN cat /rapids.yml \ | |||
|
|||
# need to unpin dask, pyarrow, and uvicorn in python 3.9 environment | |||
RUN cat /dask.yml \ | |||
| sed -r "s/libprotobuf=/libprotobuf>=/g" \ |
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.
Agreed, a short-term fix is reasonable.
The switch to
rapidsai/miniforge-cuda
base images introduced a couple small build failures that this should fix; in particular:wget
installation in dask-sql's images to installrustup
libprotobuf
pinning to avoid conflict with cuDFcrick