Skip to content

Commit

Permalink
chore(deps): update lock file, pin fsspec to avoid breakage (ibis-p…
Browse files Browse the repository at this point in the history
…roject#8684)

Adds `fsspec` to our `pyproject.toml` due to `fsspec>=2024.3.0` now passing `detail=True` by default, which is a hard break for `pins` and thus breaks `ibis.examples` without a bound.

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 authored Mar 19, 2024
1 parent af402f9 commit 3a9cc40
Show file tree
Hide file tree
Showing 5 changed files with 479 additions and 481 deletions.
6 changes: 3 additions & 3 deletions flake.lock

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

6 changes: 4 additions & 2 deletions ibis/backends/duckdb/tests/test_register.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import pandas.testing as tm
import pyarrow as pa
import pytest
from packaging.version import parse as parse_version
from pytest import param

import ibis
Expand Down Expand Up @@ -430,16 +431,17 @@ def test_csv_with_slash_n_null(con, tmp_path):
@pytest.mark.parametrize(
"extensions",
[
[],
param([], id="none"),
param(
["httpfs"],
marks=[
pytest.mark.xfail(
duckdb.__version__ == "0.10.0",
parse_version(duckdb.__version__) >= parse_version("0.10.0"),
reason="https://github.com/duckdb/duckdb/issues/10698",
raises=duckdb.HTTPException,
)
],
id="httpfs",
),
],
)
Expand Down
Loading

0 comments on commit 3a9cc40

Please sign in to comment.