Skip to content

Commit

Permalink
chore(deps): bump and relock (#10904)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud authored Feb 26, 2025
1 parent d841481 commit 28ba6c8
Show file tree
Hide file tree
Showing 7 changed files with 204 additions and 215 deletions.
18 changes: 9 additions & 9 deletions flake.lock

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

10 changes: 5 additions & 5 deletions ibis/backends/tests/test_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -916,11 +916,6 @@ def test_array_remove(con, input, expected):
@pytest.mark.notyet(
["flink"], raises=Py4JJavaError, reason="empty arrays not supported"
)
@pytest.mark.notyet(
["datafusion"],
raises=Exception,
reason="arrays with NaN returns a different number of rows than expected",
)
@pytest.mark.parametrize(
("input", "expected"),
[
Expand Down Expand Up @@ -948,6 +943,11 @@ def test_array_remove(con, input, expected):
raises=AssertionError,
reason="pyarrow doesn't return non-numpy objects for arrays",
),
pytest.mark.notyet(
["datafusion"],
raises=Exception,
reason="arrays with NaN returns a different number of rows than expected",
),
],
),
param(
Expand Down
5 changes: 0 additions & 5 deletions ibis/backends/tests/test_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,11 +499,6 @@ def test_to_pyarrow_decimal(backend, dtype, pyarrow_dtype):
condition=CI and IS_SPARK_REMOTE,
reason="not supported until pyspark 4",
)
@pytest.mark.xfail_version(
datafusion=["pyarrow>=19", "datafusion>=44"],
raises=Exception,
reason="decoding delta file fails",
)
def test_roundtrip_delta(backend, con, alltypes, tmp_path, monkeypatch):
if con.name == "pyspark":
pytest.importorskip("delta")
Expand Down
9 changes: 1 addition & 8 deletions ibis/backends/tests/test_generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -937,14 +937,7 @@ def test_table_describe_large(con):
("ibis_op", "pandas_op"),
[
param(_.string_col.isin([]), lambda df: df.string_col.isin([]), id="isin"),
param(
_.string_col.notin([]),
lambda df: ~df.string_col.isin([]),
id="notin",
marks=pytest.mark.notyet(
["polars"], reason="broken upstream in polars", raises=AssertionError
),
),
param(_.string_col.notin([]), lambda df: ~df.string_col.isin([]), id="notin"),
param(
(_.string_col.length() * 1).isin([1]),
lambda df: (df.string_col.str.len() * 1).isin([1]),
Expand Down
1 change: 1 addition & 0 deletions ibis/backends/tests/tpc/ds/test_queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -1415,6 +1415,7 @@ def test_26(catalog_sales, customer_demographics, date_dim, item, promotion):


@tpc_test("ds")
@pytest.mark.notyet(["datafusion"], reason="internal error")
def test_27(store_sales, customer_demographics, date_dim, store, item):
results = (
store_sales.join(customer_demographics, [("ss_cdemo_sk", "cd_demo_sk")])
Expand Down
22 changes: 11 additions & 11 deletions requirements-dev.txt

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

Loading

0 comments on commit 28ba6c8

Please sign in to comment.