-
Notifications
You must be signed in to change notification settings - Fork 329
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Support Pydantic V2 This updates the code to be compatible with Pydantic V2. We also introduce a smoke test for importing `kiss_icp`. It's still just a smoke test, but does a bit more than only calling `kiss_icp_pipeline --version`. The latter would also pass with Pydantic V2 being installed, while the import would fail. Co-authored-by: pnikutta <[email protected]> * Add make target * Remove debug msg The config file is in the output directory anyways * Remove unused import --------- Co-authored-by: pnikutta <[email protected]> Co-authored-by: Ignacio Vizzo <[email protected]>
- Loading branch information
1 parent
3848ee9
commit 8e5b7db
Showing
5 changed files
with
38 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
def test_import(): | ||
from kiss_icp.kiss_icp import KissICP | ||
|
||
assert KissICP is not None |