Skip to content

Commit

Permalink
Pin ibis version in the cudf.pandas integration tests <10.0.0 (#17975)
Browse files Browse the repository at this point in the history
Follows up #17972. This PR is intended to get 25.02 nightly CI passing,
which has been failing for few days.
  • Loading branch information
Matt711 authored Feb 10, 2025
1 parent 94ac29e commit d1a5558
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ dependencies:
packages:
- pip
- pip:
- ibis-framework[pandas]
- ibis-framework[pandas]<10.0.0
test_hvplot:
common:
- output_types: conda
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,12 @@
import pandas as pd
import pytest

from cudf.pandas import is_proxy_object
ibis.set_backend("pandas")

ibis.options.interactive = False


def ibis_assert_equal(expect, got, rtol: float = 1e-7, atol: float = 0.0):
assert is_proxy_object(got), (
"The result from cudf.pandas must be a proxy object"
)
pd._testing.assert_almost_equal(expect, got, rtol=rtol, atol=atol)


Expand Down

0 comments on commit d1a5558

Please sign in to comment.