Skip to content

Commit

Permalink
Update migration guide
Browse files Browse the repository at this point in the history
  • Loading branch information
disrupted committed Jul 3, 2024
1 parent f87d71a commit 5ca9584
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/docs/user/migration-guide/v6-v7.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Migrate from V6 to V7

## [Automatic loading of namespaced custom components](https://github.com/bakdata/kpops/pull/500)

KPOps is now distributed as a Python namespace package (as defined by [PEP 420](https://peps.python.org/pep-0420/)). This allows us to standardize the namespace `kpops.components` for both builtin and custom pipeline components.

Some imports need to be adjusted:

**KPOps Python API**

```diff
-import kpops
+import kpops.api as kpops
Expand Down

0 comments on commit 5ca9584

Please sign in to comment.