Skip to content

Commit

Permalink
chore(deps): lock file maintenance (#9291)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jun 8, 2024
1 parent 85eb74d commit aeb4e9d
Show file tree
Hide file tree
Showing 5 changed files with 636 additions and 639 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ibis-backends.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ jobs:
additional_deps:
- "'apache-flink < 1.20.0'"
- "'pandas < 2.2'"
- setuptools
services:
- flink
include:
Expand All @@ -250,6 +251,7 @@ jobs:
additional_deps:
- "'apache-flink < 1.20.0'"
- "'pandas < 2.2'"
- setuptools
services:
- flink
- os: ubuntu-latest
Expand Down Expand Up @@ -400,6 +402,7 @@ jobs:
additional_deps:
- "'apache-flink < 1.20.0'"
- "'pandas < 2.2'"
- setuptools
services:
- flink
- os: windows-latest
Expand All @@ -412,6 +415,7 @@ jobs:
additional_deps:
- "'apache-flink < 1.20.0'"
- "'pandas < 2.2'"
- setuptools
services:
- flink
- os: windows-latest
Expand Down Expand Up @@ -686,6 +690,7 @@ jobs:
deps:
- "'pandas@>2'"
- "'numpy@>1.24'"
- setuptools
steps:
- name: checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion ibis/backends/polars/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ def join(op, **kw):
elif how == "outer":
how = "full"

joined = left.join(right, on=on, how=how)
joined = left.join(right, on=on, how=how, coalesce=False)

try:
joined = joined.drop(*on)
Expand Down
4 changes: 0 additions & 4 deletions ibis/backends/tests/test_param.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,10 +209,6 @@ def test_scalar_param_date(backend, alltypes, value):
"exasol",
]
)
@pytest.mark.broken(
["polars"],
reason="support for this stopped working around 0.20.30; causes a panic on calling vec_hash on list[f64]",
)
def test_scalar_param_nested(con):
param = ibis.param("struct<x: array<struct<y: array<double>>>>")
value = OrderedDict([("x", [OrderedDict([("y", [1.0, 2.0, 3.0])])])])
Expand Down
Loading

0 comments on commit aeb4e9d

Please sign in to comment.