-
Notifications
You must be signed in to change notification settings - Fork 135
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
Fix make set-versions target #548
Conversation
Signed-off-by: David Wood <[email protected]>
Signed-off-by: David Wood <[email protected]>
Signed-off-by: David Wood <[email protected]>
Signed-off-by: David Wood <[email protected]>
Signed-off-by: David Wood <[email protected]>
Signed-off-by: David Wood <[email protected]>
.make.defaults
Outdated
-e 's/"data-prep-toolkit\([=><][=><]\).*",/"data-prep-toolkit\1$(DPK_LIB_VERSION)",/' \ | ||
-e 's/"ray\[default\]\([=><][=><]\).*",/"ray\[default\]\1$(RAY)",/' \ | ||
-e 's/"data-prep-toolkit-kfp-shared\(..\).*",/"data-prep-toolkit-kfp-shared\1$(DPK_LIB_KFP_VERSION)",/' \ | ||
-e 's/"data-prep-toolkit-ray\([=><][=><]\).*"/"data-prep-toolkit-ray\1$(DPK_LIB_VERSION)"/' \ |
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.
if you want to narrow possible options, I'd define it as `[=><~][=].
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 and done.
transforms/.make.transforms
Outdated
@@ -335,8 +335,9 @@ minio-stop: | |||
if [ -e pyproject.toml ]; then \ | |||
dash_name=$$(echo $(TRANSFORM_NAME) | sed -e 's/_/-/g'); \ | |||
cat pyproject.toml | sed \ | |||
-e 's/"dpk-$(TRANSFORM_NAME)-transform-python\([=<>][=<>]\).*",/"dpk-$(TRANSFORM_NAME)-transform-python\1$(TRANSFORM_PYTHON_VERSION)",/' \ | |||
-e 's/"dpk-'$${dash_name}'-transform-python\([=<>][=<>]\).*",/"dpk-'$${dash_name}'-transform-python\1$(TRANSFORM_PYTHON_VERSION)",/' \ | |||
-e 's/"dpk_$(TRANSFORM_NAME)_transform_python\([=<>][=<>]\).*"/"dpk_$(TRANSFORM_NAME)_transform_python\1$(TRANSFORM_PYTHON_VERSION)"/' \ |
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.
why not rename ones all dpk-...-transform-pyton ?
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 and done.
Signed-off-by: David Wood <[email protected]>
Why are these changes needed?
Update .make.defaults and .make.transforms to address issues found in #541
Related issue number (if any).