Skip to content

Commit

Permalink
Backport PR #59818 on branch 2.2.x (BUG: Remove np._get_promotion_sta…
Browse files Browse the repository at this point in the history
…te usage) (#59821)

BUG: Remove np._get_promotion_state usage (#59818)

(cherry picked from commit 081dcde)

Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
  • Loading branch information
jorisvandenbossche and lysnikolaou authored Sep 16, 2024
1 parent 0ed9982 commit e5a2067
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pandas/tests/series/indexing/test_setitem.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
datetime,
)
from decimal import Decimal
import os

import numpy as np
import pytest

from pandas.compat import WASM
from pandas.compat.numpy import np_version_gte1p24
from pandas.errors import IndexingError

Expand Down Expand Up @@ -1443,7 +1445,11 @@ def obj(self):
marks=pytest.mark.xfail(
(
not np_version_gte1p24
or (np_version_gte1p24 and np._get_promotion_state() != "weak")
or (
np_version_gte1p24
and os.environ.get("NPY_PROMOTION_STATE", "weak") != "weak"
)
or WASM
),
reason="np.float32(1.1) ends up as 1.100000023841858, so "
"np_can_hold_element raises and we cast to float64",
Expand Down

0 comments on commit e5a2067

Please sign in to comment.