-
Notifications
You must be signed in to change notification settings - Fork 226
Open
Labels
Feature Request 🤓Issue contains a feature requestIssue contains a feature request
Description
Description
In the vizro.integrations.kedro._data_manager.py module, the extra_params argument used during session creation is deprecated.
Starting from Kedro 1.0.0, this parameter has been replaced by runtime_params.
As a result, the current integration fails when used with the stable release of Kedro (v1.0.0+).
Affected Code
# Current (deprecated)
session = KedroSession.create(project_path, extra_params=params)Expected Behavior
The integration should use the new runtime_params argument:
session = KedroSession.create(project_path, runtime_params=params)References
Suggested Fix
Update all occurrences of extra_params → runtime_params to maintain compatibility with Kedro ≥ 1.0.0.
petar-qbmaxschulz-COL
Metadata
Metadata
Assignees
Labels
Feature Request 🤓Issue contains a feature requestIssue contains a feature request