File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change 3
3
import numpy as np
4
4
import pytest
5
5
6
- from pandas .compat import PY37 , is_platform_windows
7
-
8
6
import pandas as pd
9
7
from pandas import (
10
8
Categorical ,
13
11
Index ,
14
12
MultiIndex ,
15
13
Series ,
16
- _np_version_under1p17 ,
17
14
qcut ,
18
15
)
19
16
import pandas ._testing as tm
@@ -244,12 +241,6 @@ def test_level_get_group(observed):
244
241
tm .assert_frame_equal (result , expected )
245
242
246
243
247
- # GH#21636 flaky on py37; may be related to older numpy, see discussion
248
- # https://github.com/MacPython/pandas-wheels/pull/64
249
- @pytest .mark .xfail (
250
- PY37 and _np_version_under1p17 and not is_platform_windows (),
251
- reason = "Flaky, GH-27902" ,
252
- )
253
244
@pytest .mark .parametrize ("ordered" , [True , False ])
254
245
def test_apply (ordered ):
255
246
# GH 10138
You can’t perform that action at this time.
0 commit comments