-
Notifications
You must be signed in to change notification settings - Fork 35
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
Investigate why support for modern kedro datasets breaks for kedro<0.19.7 #592
Comments
@Galileo-Galilei Do you have a stack trace handy, by chance? The only thing I can imagine is if |
There is an "obvious" (after 1 hour of debugging >< ) error in the code : his line misses a return statement and for the old dataset style, it leads to return I am a bit worried that is was not caught by this test in the first place 😕 (EDIT: Got it : when you test with kedro>=0.19.7, the |
Gah, sorry!! |
No problem, I didn't see it either! |
Description
#590 introduced support for modern kedro datasets, i.e. with
load
andsave
defined on user side instead of private_load
and_save
. This breaks my tests locally forkedro<0.19.7
FYI @deepyaman, I'll take a stab at it.
Context
I should ensure retrocompatiblity, and this change isn't
Steps to Reproduce
Install the last version of master , install kedro <0.19.7, run tests.
Expected Result
Actual Result
Your Environment
kedro
andkedro-mlflow
version used (pip show kedro
andpip show kedro-mlflow
):python -V
):Does the bug also happen with the last version on master?
The text was updated successfully, but these errors were encountered: