Skip to content

Commit

Permalink
test: lower the minimum python 3.10 -> 3.9 for ibis
Browse files Browse the repository at this point in the history
  • Loading branch information
dangotbanned committed Jul 19, 2024
1 parent 6ffb2e3 commit bfd75dd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/vegalite/v5/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1527,8 +1527,9 @@ def test_polars_with_pandas_nor_pyarrow(monkeypatch: pytest.MonkeyPatch):


@pytest.mark.skipif(
sys.version_info < (3, 10),
reason="ibis requires 'python>=3.10'",
sys.version_info < (3, 9),
reason="The maximum `ibis` version installable on Python 3.8 is `ibis==5.1.0`,"
" which doesn't support the dataframe interchange protocol.",
)
@pytest.mark.skipif(
Version("1.5") > PANDAS_VERSION,
Expand Down

0 comments on commit bfd75dd

Please sign in to comment.