Skip to content
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

Add mlruns to gitignore to avoid pushing mlflow local runs to github #3765

Merged
merged 4 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@
* Kedro commands now work from any subdirectory within a Kedro project.
* Kedro CLI now provides a better error message when project commands are run outside of a project i.e. `kedro run`.
* Dropped the dependency on `toposort` in favour of the built-in `graphlib` module.
* Improve the performance of `Pipeline` object creation and summing.
* Improve suggestions to resume failed pipeline runs.
* Improved the performance of `Pipeline` object creation and summing.
* Improved suggestions to resume failed pipeline runs.

## Bug fixes and other changes
* Updated `kedro pipeline create` and `kedro pipeline delete` to read the base environment from the project settings.
* Updated CLI command `kedro catalog resolve` to read credentials properly.
* Updated ``.gitignore`` to prevent pushing Mlflow local runs folder to a remote forge when using mlflow and git.

Check warning on line 16 in RELEASE.md

View workflow job for this annotation

GitHub Actions / vale

[vale] RELEASE.md#L16

[Kedro.Spellings] Did you really mean 'Mlflow'?
Raw output
{"message": "[Kedro.Spellings] Did you really mean 'Mlflow'?", "location": {"path": "RELEASE.md", "range": {"start": {"line": 16, "column": 45}}}, "severity": "WARNING"}

Check warning on line 16 in RELEASE.md

View workflow job for this annotation

GitHub Actions / vale

[vale] RELEASE.md#L16

[Kedro.Spellings] Did you really mean 'mlflow'?
Raw output
{"message": "[Kedro.Spellings] Did you really mean 'mlflow'?", "location": {"path": "RELEASE.md", "range": {"start": {"line": 16, "column": 99}}}, "severity": "WARNING"}

## Breaking changes to the API
* Methods `_is_project` and `_find_kedro_project` have been moved to `kedro.utils`. We recommend not using private methods in your code, but if you do, please update your code to use the new location.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,3 +157,6 @@ venv.bak/

# mypy
.mypy_cache/

# mlflow local runs
mlruns/*