We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85e756b commit 5150301Copy full SHA for 5150301
pandas/tests/series/indexing/test_setitem.py
@@ -11,7 +11,10 @@
11
12
from pandas._config import using_string_dtype
13
14
-from pandas.compat import HAS_PYARROW
+from pandas.compat import (
15
+ HAS_PYARROW,
16
+ WASM,
17
+)
18
from pandas.compat.numpy import np_version_gte1p24
19
from pandas.errors import IndexingError
20
@@ -1451,6 +1454,7 @@ def obj(self):
1451
1454
np_version_gte1p24
1452
1455
and os.environ.get("NPY_PROMOTION_STATE", "weak") != "weak"
1453
1456
)
1457
+ or WASM
1458
),
1459
reason="np.float32(1.1) ends up as 1.100000023841858, so "
1460
"np_can_hold_element raises and we cast to float64",
0 commit comments