Skip to content

Commit 7730abc

Browse files
authored
updated the lower bound PR 611 (#619)
updated the lower bound
1 parent 799ddb3 commit 7730abc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_series.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1409,7 +1409,7 @@ def test_bitwise_operators() -> None:
14091409
with pytest_warns_bounded(
14101410
FutureWarning,
14111411
match="Logical ops (and, or, xor) between Pandas objects and",
1412-
lower="2.1",
1412+
lower="2.0.99",
14131413
):
14141414
check(assert_type(s & [1, 2, 3, 4], "pd.Series[bool]"), pd.Series, np.bool_)
14151415
check(assert_type([1, 2, 3, 4] & s, "pd.Series[bool]"), pd.Series, np.bool_)
@@ -1455,7 +1455,7 @@ def test_logical_operators() -> None:
14551455
with pytest_warns_bounded(
14561456
FutureWarning,
14571457
match="Logical ops (and, or, xor) between Pandas objects and",
1458-
lower="2.1",
1458+
lower="2.0.99",
14591459
):
14601460
check(
14611461
assert_type((df["a"] >= 2) ^ [True, False, True], "pd.Series[bool]"),

0 commit comments

Comments
 (0)