Skip to content

Commit 6f508ee

Browse files
committed
docs: Document changes
1 parent 3c3cea0 commit 6f508ee

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

MIGRATION_V1_V2.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
# Migrating PyLops codes from V1 to V2
1+
# Migrating PyLops code from v1.x to v2.0
22

33
This file is intended to guide users willing to convert their codes from PyLops v1 to PyLops v2.
44

55
In the following we provide a detailed description of all the breaking changes introduced in v2, which
66
should be used as a checklist when converting a piece of code using PyLops from v1 to v2.
77

8-
- XX
9-
- XX
10-
- XX
8+
- Several operators have deprecated `N` as a keyword. To migrate, pass only `dims` if both `N` and `dims` are currently being passed.
9+
If only `N` is being passed, ensure it is being passed as a value and not a keyword argument (e.g., change `Flip(N=100)` to `Flip(100)`).

0 commit comments

Comments
 (0)