Skip to content

Commit

Permalink
chore: update the python version and dependencies for release
Browse files Browse the repository at this point in the history
  • Loading branch information
rtyler committed May 1, 2024
1 parent 716acc3 commit f6d1108
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,16 @@ tokio = { workspace = true, features = ["rt-multi-thread"] }
# for binary wheel best practice, statically link openssl
reqwest = { version = "*", features = ["native-tls-vendored"] }

deltalake-mount = { path = "../crates/mount" }

[dependencies.pyo3]
version = "0.20"
features = ["extension-module", "abi3", "abi3-py38"]

[dependencies.deltalake]
path = "../crates/deltalake"
version = "0"
features = ["azure", "gcs", "python", "datafusion", "unity-experimental", "mount"]
features = ["azure", "gcs", "python", "datafusion", "unity-experimental"]

[features]
default = ["rustls"]
Expand Down
2 changes: 1 addition & 1 deletion python/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1739,7 +1739,7 @@ fn _internal(py: Python, m: &PyModule) -> PyResult<()> {
deltalake::aws::register_handlers(None);
deltalake::azure::register_handlers(None);
deltalake::gcp::register_handlers(None);
deltalake::mount::register_handlers(None);
deltalake_mount::register_handlers(None);

m.add("DeltaError", py.get_type::<DeltaError>())?;
m.add("CommitFailedError", py.get_type::<CommitFailedError>())?;
Expand Down

0 comments on commit f6d1108

Please sign in to comment.