Skip to content

Commit 7249542

Browse files
committed
WIP
1 parent 7a5ad1f commit 7249542

File tree

8 files changed

+439
-13
lines changed

8 files changed

+439
-13
lines changed

bindings/python/Cargo.lock

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/python/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,4 @@ crate-type = ["cdylib"]
3434
arrow = { version = "54.1.0", features = ["pyarrow", "chrono-tz"] }
3535
iceberg = { path = "../../crates/iceberg" }
3636
pyo3 = { version = "0.23.3", features = ["extension-module", "abi3-py39"] }
37+
serde_json = "1.0.138"

bindings/python/poetry.lock

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ classifiers = [
3333
name = "pyiceberg-core"
3434
readme = "project-description.md"
3535
requires-python = "~=3.9"
36-
version = "0.4.0"
36+
version = "0.22123123.0"
3737

3838
[tool.maturin]
3939
features = ["pyo3/extension-module"]

bindings/python/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@ use pyo3::prelude::*;
1919

2020
mod error;
2121
mod transform;
22+
mod manifest;
2223

2324
#[pymodule]
2425
fn pyiceberg_core_rust(py: Python<'_>, m: &Bound<'_, PyModule>) -> PyResult<()> {
2526
transform::register_module(py, m)?;
27+
manifest::register_module(py, m)?;
2628
Ok(())
2729
}

0 commit comments

Comments
 (0)