Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update RELEASE.md to reflect the rebase from develop
Browse files Browse the repository at this point in the history
idanov committed Nov 6, 2023
1 parent 7fd34f0 commit 716806e
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -6,6 +6,7 @@
* The new spaceflights starters, `spaceflights-pandas`, `spaceflights-pandas-viz`, `spaceflights-pyspark`, and `spaceflights-pyspark-viz` can be used with the `kedro new` command with the `--starter` flag.
* Added the `--conf-source` option to `%reload_kedro`, allowing users to specify a source for project configuration.
* Added the functionality to choose a merging strategy for config files loaded with `OmegaConfigLoader`.
* Improved the default template's entrypoint to allow for `IPython` and Databricks executions without separate scripts.


## Bug fixes and other changes
@@ -57,7 +58,6 @@ Many thanks to the following Kedroids for contributing PRs to this release:
## Major features and improvements
* Allowed using of custom cookiecutter templates for creating pipelines with `--template` flag for `kedro pipeline create` or via `template/pipeline` folder.
* Allowed overriding of configuration keys with runtime parameters using the `runtime_params` resolver with `OmegaConfigLoader`.
* Improved the default template's entrypoint to allow for `IPython` and Databricks executions without separate scripts.

## Bug fixes and other changes
* Updated dataset factories to resolve nested catalog config properly.
Original file line number Diff line number Diff line change
@@ -41,9 +41,10 @@ def main(*args, **kwargs):
package_name = Path(__file__).parent.name
configure_project(package_name)
run = _find_run_command(package_name)

interactive = not hasattr(sys, 'ps1')
kwargs["standalone_mode"] = not interactive

run(*args, **kwargs)


0 comments on commit 716806e

Please sign in to comment.