diff --git a/python/Cargo.toml b/python/Cargo.toml index bf0e2b2..1807a09 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zarr-datafusion-search-python" -version = "0.1.1" +version = "0.1.2" edition = "2024" authors = ["Kyle Barron "] description = "Python bindings for zarr-datafusion-search" diff --git a/python/src/table.rs b/python/src/table.rs index f294636..ee609d5 100644 --- a/python/src/table.rs +++ b/python/src/table.rs @@ -33,9 +33,6 @@ impl PyZarrTable { .extract()?; let icechunk_session = icechunk::session::Session::from_bytes(bytes).unwrap(); - dbg!("Created icechunk session from msgpack serialization"); - dbg!(icechunk_session.config()); - future_into_py(py, async move { let table_provider = ZarrTableProvider::new_icechunk(icechunk_session, &group_path) .await diff --git a/src/testing/iter_group.rs b/src/testing/iter_group.rs index d524379..93aff87 100644 --- a/src/testing/iter_group.rs +++ b/src/testing/iter_group.rs @@ -15,8 +15,7 @@ async fn test_load_group() { { let storage = Arc::new(FilesystemStore::new(path).unwrap()); - let group = Group::open(storage.clone(), "/meta").unwrap(); - dbg!(group.path()); + let _group = Group::open(storage.clone(), "/meta").unwrap(); } } @@ -35,6 +34,5 @@ async fn test_load_group_icechunk() { let version_info = VersionInfo::BranchTipRef("main".to_string()); let session = repo.readonly_session(&version_info).await.unwrap(); let store = Arc::new(AsyncIcechunkStore::new(session)); - let group = Group::async_open(store.clone(), "/meta").await.unwrap(); - dbg!(group.path()); + let _group = Group::async_open(store.clone(), "/meta").await.unwrap(); } diff --git a/src/testing/load_zarrs.rs b/src/testing/load_zarrs.rs index ec0a0b6..c243e61 100644 --- a/src/testing/load_zarrs.rs +++ b/src/testing/load_zarrs.rs @@ -178,9 +178,6 @@ async fn test_load_bbox_array() { { let store = Arc::new(FilesystemStore::new(path).unwrap()); - let bbox_array = Array::open(store.clone(), "/meta/bbox").unwrap(); - - println!("HII"); - dbg!(bbox_array.data_type()); + let _bbox_array = Array::open(store.clone(), "/meta/bbox").unwrap(); } }