Skip to content

Commit

Permalink
fix(deps): update dependency datafusion to v35 (#8224)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Phillip Cloud <[email protected]>
  • Loading branch information
renovate[bot] and cpcloud committed Feb 5, 2024
1 parent ba3e9e2 commit a34af25
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
1 change: 1 addition & 0 deletions ibis/backends/tests/test_string.py
Original file line number Diff line number Diff line change
Expand Up @@ -742,6 +742,7 @@ def uses_java_re(t):
raises=AttributeError,
),
pytest.mark.broken(["druid"], raises=sa.exc.ProgrammingError),
pytest.mark.xfail_version(datafusion=["datafusion==35"]),
],
),
param(
Expand Down
1 change: 1 addition & 0 deletions ibis/backends/tests/test_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -710,6 +710,7 @@ def test_simple_ungrouped_unbound_following_window(
raises=sa.exc.InternalError,
reason="Feature is not yet implemented: Window function with empty PARTITION BY is not supported yet",
)
@pytest.mark.xfail_version(datafusion=["datafusion==35"])
def test_simple_ungrouped_window_with_scalar_order_by(alltypes):
t = alltypes[alltypes.double_col < 50].order_by("id")
w = ibis.window(rows=(0, None), order_by=ibis.NA)
Expand Down
17 changes: 9 additions & 8 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
Expand Up @@ -61,7 +61,7 @@ dask = { version = ">=2022.9.1", optional = true, extras = [
"array",
"dataframe",
] }
datafusion = { version = ">=0.6,<35", optional = true }
datafusion = { version = ">=0.6,<36", optional = true }
db-dtypes = { version = ">=0.3,<2", optional = true }
deltalake = { version = ">=0.9.0,<1", optional = true }
duckdb = { version = ">=0.8.1,<1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ cryptography==41.0.7 ; python_version >= "3.9" and python_version < "4.0"
cycler==0.12.1 ; python_version >= "3.10" and python_version < "3.13"
dask==2024.1.0 ; python_version >= "3.10" and python_version < "3.13"
dask[array,dataframe]==2024.1.0 ; python_version >= "3.9" and python_version < "4.0"
datafusion==34.0.0 ; python_version >= "3.9" and python_version < "4.0"
datafusion==35.0.0 ; python_version >= "3.9" and python_version < "4.0"
db-dtypes==1.2.0 ; python_version >= "3.9" and python_version < "4.0"
debugpy==1.8.0 ; python_version >= "3.10" and python_version < "3.13"
decorator==5.1.1 ; python_version >= "3.9" and python_version < "4.0"
Expand Down

0 comments on commit a34af25

Please sign in to comment.