Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(bindings/python): generate python operator constructor types #5457

Merged
merged 15 commits into from
Dec 27, 2024
7 changes: 4 additions & 3 deletions bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ default = [
"services-webhdfs",
]

# NOTE: this is the feature we used to build pypi wheels.
# When enable or disable some features,
# also need to update dev/src/generate/binding_python.rs `enabled_service` to match it.
services-all = [
"default",
"services-aliyun-drive",
Expand Down Expand Up @@ -161,9 +164,7 @@ bytes = "1.5.0"
dict_derive = "0.6.0"
futures = "0.3.28"
# this crate won't be published, we always use the local version
opendal = { version = ">=0", path = "../../core", features = [
"layers-blocking",
] }
opendal = { version = ">=0", path = "../../core", features = ["layers-blocking"] }
pyo3 = { version = "0.23.3", features = ["generate-import-lib"] }
pyo3-async-runtimes = { version = "0.23.0", features = ["tokio-runtime"] }
tokio = "1"
Expand Down
Loading
Loading