-
Notifications
You must be signed in to change notification settings - Fork 293
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
Provide upper bound to great expectations #2717
Provide upper bound to great expectations #2717
Conversation
@@ -196,7 +196,7 @@ def to_python_value( | |||
ge_conf = GreatExpectationsFlyteConfig(**conf_dict) | |||
|
|||
# fetch the data context | |||
context = ge.data_context.DataContext(ge_conf.context_root_dir) # type: ignore | |||
context = ge.get_context(context_root_dir=self._context_root_dir) # type: ignore |
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.
should we require greatexpectations>=1.0.0
in setup.py?
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.
I made it 0.18.0 since get_context
is available in 0.18.X: https://github.com/great-expectations/great_expectations/blob/0.18.0/great_expectations/__init__.py
The test is still failing |
Signed-off-by: Thomas J. Fan <[email protected]>
26dcd41
ee5b96d
to
26dcd41
Compare
Why are the changes needed?
Fixes CI issue with a breaking change in great expectations 1.0.0.