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

fix(deps): update dependency datafusion to v39 #9506

Merged
merged 4 commits into from
Jul 3, 2024
Merged
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
2 changes: 1 addition & 1 deletion ibis/backends/datafusion/tests/test_udf.py
Original file line number Diff line number Diff line change
@@ -70,7 +70,7 @@ def median(a: float) -> float:


@pytest.mark.xfail(
condition=vparse(datafusion.__version__) == vparse("38.0.1"),
condition=vparse(datafusion.__version__) >= vparse("38.0.1"),
reason="internal error about MEDIAN(G) naming",
)
def test_builtin_agg_udf_filtered(con):
2 changes: 1 addition & 1 deletion ibis/backends/tests/test_generic.py
Original file line number Diff line number Diff line change
@@ -1482,7 +1482,7 @@ def test_pivot_longer(backend):


@pytest.mark.xfail_version(
datafusion=["datafusion==38.0.1"], reason="internal error about MEDIAN(G) naming"
datafusion=["datafusion>=38.0.1"], reason="internal error about MEDIAN(G) naming"
)
def test_pivot_wider(backend):
diamonds = backend.diamonds
4 changes: 0 additions & 4 deletions ibis/backends/tests/tpc/ds/test_queries.py
Original file line number Diff line number Diff line change
@@ -281,10 +281,6 @@ def test_07(store_sales, customer_demographics, date_dim, item, promotion):


@tpc_test("ds")
@pytest.mark.broken(
["datafusion"],
reason='The left or right side of the join does not have all columns on "on"',
)
def test_08(store_sales, date_dim, store, customer_address, customer):
zip_codes = (
"24128",
14 changes: 7 additions & 7 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -59,7 +59,7 @@ dask = { version = ">=2022.9.1,<2024.3.0", optional = true, extras = [
"array",
"dataframe",
] }
datafusion = { version = ">=0.6,<39", optional = true }
datafusion = { version = ">=0.6,<40", optional = true }
db-dtypes = { version = ">=0.3,<2", optional = true }
deltalake = { version = ">=0.9.0,<1", optional = true }
duckdb = { version = ">=0.8.1,<2", optional = true }
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ crashtest==0.4.1 ; python_version >= "3.10" and python_version < "4.0"
cryptography==42.0.8 ; python_version >= "3.10" and python_version < "4.0"
cycler==0.12.1 ; python_version >= "3.10" and python_version < "3.13"
dask[array,dataframe]==2024.2.1 ; python_version >= "3.10" and python_version < "4.0"
datafusion==38.0.1 ; python_version >= "3.10" and python_version < "4.0"
datafusion==39.0.0 ; python_version >= "3.10" and python_version < "4.0"
db-dtypes==1.2.0 ; python_version >= "3.10" and python_version < "4.0"
debugpy==1.8.2 ; python_version >= "3.10" and python_version < "3.13"
decorator==5.1.1 ; python_version >= "3.10" and python_version < "4.0"