-
Notifications
You must be signed in to change notification settings - Fork 36
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
Make mlflow init work when configuration is in pyproject.toml #96
Comments
Well spoted ! We can already solve this, by bundling kedro's |
Ok let's do this! |
6 tasks
takikadiri
added a commit
that referenced
this issue
Oct 18, 2020
takikadiri
added a commit
that referenced
this issue
Oct 21, 2020
takikadiri
added a commit
that referenced
this issue
Oct 25, 2020
Galileo-Galilei
pushed a commit
that referenced
this issue
Oct 25, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
Since 0.16.5, kedro project can now be configured with a
pyproject.toml
config file instead of a.kedro.yml
at the root of the projects. This breaks thekedro mlflow init
command which is only compatible with.kedro.yml
configuration file.Context
We should remove the
_get_project_globals
util function in kedromlflow and usekedro.framework.context import get_static_project_data
as suggested in #86. Beware: this will break retrocompatibilty and work only with kedro>=0.16.5Steps to Reproduce
Launch
kedro mlflow init
with no.kedro.yml
config file in your project but a validpyproject.toml
.Expected Result
The mlflow.yml file should be created
Actual Result
An error is raised.
The text was updated successfully, but these errors were encountered: