-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
SDK - Setup - Added cloudpickle to requirements #2437
SDK - Setup - Added cloudpickle to requirements #2437
Conversation
/retest |
Can you add to the description for where cloudpickle is used? Thanks. |
Done. |
/lgtm |
I've added an explicit version in both places. |
/lgtm |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: Ark-kun The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Cloudpickle is used by the
func_to_container_op(..., use_code_pickling=True)
andcreate_component_from_airflow_operator
.setup.py
installs it, but requirements.txt did not have it.Long-term fix: We need to make
setup.py
userequirements.txt
.This change is