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

Added support for kedro namespaces for parameters #223

Conversation

DmitriyLamzin
Copy link
Contributor

Now params which defined as outer_namespace.inner_namespace.param_name are converted to the following structure before adding to the pipeline:

{
  "outer_namespace": {
      "inner_namespace": {
        "param_name": "value",
        ...
      },
      "another_inner_namespace": {
        "param_name": "value"
        ...
      }
  }
}

Description

describe the purpose of the change here

Resolves #219

PR Checklist

Now params which defined as `outer_namespace.inner_namespace.param_name` converted to the following structure before adding to pipeline:

```json
{
  "outer_namespace": {
      "inner_namespace": {
        "param_name": "value",
        ...
      },
      "another_inner_namespace": {
        "param_name": "value"
        ...
      }
  }
}
```

Added support for kedro namespaces for parameters

Now params which defined as `outer_namespace.inner_namespace.param_name` converted to the following structure before adding to pipeline:

```json
{
  "outer_namespace": {
      "inner_namespace": {
        "param_name": "value",
        ...
      },
      "another_inner_namespace": {
        "param_name": "value"
        ...
      }
  }
}
```
@szczeles
Copy link
Contributor

Looks great, @DmitriyLamzin! Thanks for your contribution

@DmitriyLamzin
Copy link
Contributor Author

Looks like CI is broken. I don't think my changes could break it.

@szczeles
Copy link
Contributor

@DmitriyLamzin You're right, the CI is broken, I have the fix ready, and we will merge it on Monday.

@szczeles szczeles mentioned this pull request Feb 27, 2023
Copy link
Contributor

@szczeles szczeles left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've merged develop branch into yours and it looks it fixed CI, thanks!

@szczeles szczeles merged commit ef84321 into getindata:develop Feb 27, 2023
@szczeles
Copy link
Contributor

@DmitriyLamzin Released as 0.7.4 🎉

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add support to kedro namespaces for parameters
2 participants