Skip to content

Commit

Permalink
chore(deps): bump pyarrow to 19.0.0 (#10676)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud authored Jan 16, 2025
1 parent bd30ba5 commit ee57382
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 40 deletions.
6 changes: 6 additions & 0 deletions ibis/backends/tests/test_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from ibis import util
from ibis.backends.tests.errors import (
DatabricksServerOperationError,
DuckDBInvalidInputException,
DuckDBNotImplementedException,
DuckDBParserException,
ExaQueryError,
Expand Down Expand Up @@ -440,6 +441,11 @@ 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(
duckdb=["pyarrow>=19"],
raises=DuckDBInvalidInputException,
reason="decoding delta file fails",
)
def test_roundtrip_delta(backend, con, alltypes, tmp_path, monkeypatch):
if con.name == "pyspark":
pytest.importorskip("delta")
Expand Down
2 changes: 1 addition & 1 deletion ibis/expr/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1681,7 +1681,7 @@ def read_delta(
>>> import deltalake as dl
>>> dl.write_deltalake("/tmp/data.delta", df, mode="overwrite")
>>> t = ibis.read_delta("/tmp/data.delta")
>>> t
>>> t # doctest: +SKIP
┏━━━━━━━┳━━━━━━━━┓
┃ a ┃ b ┃
┡━━━━━━━╇━━━━━━━━┩
Expand Down
2 changes: 1 addition & 1 deletion 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 ee57382

Please sign in to comment.