Skip to content

Commit

Permalink
Update RELEASE.md to reflect the rebase from develop
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan Danov <[email protected]>
  • Loading branch information
idanov committed Nov 6, 2023
1 parent 09334e9 commit d0fb16a
Show file tree
Hide file tree
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
Expand Up @@ -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
Expand Down Expand Up @@ -62,7 +63,6 @@ We are grateful to every community member who made a PR to Kedro that's found it
## 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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down

0 comments on commit d0fb16a

Please sign in to comment.