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

chore: update py-df to 43.1 #1152

Merged
merged 2 commits into from
Dec 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion examples/tests/object_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,6 @@ mod custom_s3_config {
use ballista_core::RuntimeProducer;
use ballista_examples::object_store::{CustomObjectStoreRegistry, S3Options};
use ballista_examples::test_util::examples_test_data;
use datafusion::execution::runtime_env::RuntimeEnv;
use datafusion::execution::SessionState;
use datafusion::prelude::SessionConfig;
use datafusion::{assert_batches_eq, prelude::SessionContext};
Expand Down
8 changes: 4 additions & 4 deletions python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ ballista = { path = "../ballista/client", version = "0.12.0" }
ballista-core = { path = "../ballista/core", version = "0.12.0" }
ballista-executor = { path = "../ballista/executor", version = "0.12.0", default-features = false }
ballista-scheduler = { path = "../ballista/scheduler", version = "0.12.0", default-features = false }
datafusion = { version = "42", features = ["pyarrow", "avro"] }
datafusion-proto = { version = "42" }
datafusion-python = { version = "42" }
datafusion = { version = "43", features = ["pyarrow", "avro"] }
datafusion-proto = { version = "43" }
datafusion-python = { version = "43" }

pyo3 = { version = "0.22", features = ["extension-module", "abi3", "abi3-py38"] }
pyo3-log = "0.11.0"
pyo3-log = "0.11"
tokio = { version = "1.42", features = ["macros", "rt", "rt-multi-thread", "sync"] }

[lib]
Expand Down
2 changes: 1 addition & 1 deletion python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
datafusion==42.0.0
datafusion==43.1.0
pyarrow
pytest
maturin==1.5.1
Expand Down
Loading