This is an automated email from the ASF dual-hosted git repository.
liurenjie1024 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-rust.git
The following commit(s) were added to refs/heads/main by this push:
new d7b2f1f6 pyiceberg-core: use pyo3 abi3-py310 (#1843)
d7b2f1f6 is described below
commit d7b2f1f6d0874000122929b7aacb150dbb5c9fc1
Author: Kevin Liu <[email protected]>
AuthorDate: Tue Nov 11 20:16:13 2025 -0800
pyiceberg-core: use pyo3 abi3-py310 (#1843)
---
bindings/python/Cargo.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml
index 9d4e94ab..f94b5695 100644
--- a/bindings/python/Cargo.toml
+++ b/bindings/python/Cargo.toml
@@ -33,7 +33,7 @@ crate-type = ["cdylib"]
[dependencies]
arrow = { version = "56", features = ["pyarrow", "chrono-tz"] }
iceberg = { path = "../../crates/iceberg" }
-pyo3 = { version = "0.25", features = ["extension-module", "abi3-py39"] }
+pyo3 = { version = "0.25", features = ["extension-module", "abi3-py310"] }
iceberg-datafusion = { path = "../../crates/integrations/datafusion" }
datafusion-ffi = { version = "50" }
tokio = { version = "1.46.1", default-features = false }