File tree 3 files changed +14
-4
lines changed
.github/actions/build_pandas
3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 28
28
fi
29
29
shell : bash -el {0}
30
30
31
+ - name : Uninstall nomkl
32
+ run : |
33
+ if conda list nomkl | grep nomkl 1>/dev/null; then
34
+ conda remove nomkl -y
35
+ fi
36
+ shell : bash -el {0}
37
+
31
38
- name : Build Pandas
32
39
run : |
33
40
export CFLAGS="$CFLAGS ${{ inputs.cflags_adds }}"
Original file line number Diff line number Diff line change 4
4
import pytest
5
5
6
6
from pandas ._libs .interval import IntervalTree
7
- from pandas .compat import IS64
7
+ from pandas .compat import (
8
+ IS64 ,
9
+ WASM ,
10
+ )
8
11
9
12
import pandas ._testing as tm
10
13
@@ -190,7 +193,7 @@ def test_construction_overflow(self):
190
193
expected = (50 + np .iinfo (np .int64 ).max ) / 2
191
194
assert result == expected
192
195
193
- @pytest .mark .xfail (not IS64 , reason = "GH 23440" )
196
+ @pytest .mark .xfail (WASM , reason = "GH 23440" )
194
197
@pytest .mark .parametrize (
195
198
"left, right, expected" ,
196
199
[
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 IS64
6
+ from pandas .compat import WASM
7
7
8
8
from pandas import (
9
9
Index ,
@@ -211,7 +211,7 @@ def test_loc_getitem_missing_key_error_message(
211
211
obj .loc [[4 , 5 , 6 ]]
212
212
213
213
214
- @pytest .mark .xfail (not IS64 , reason = "GH 23440" )
214
+ @pytest .mark .xfail (WASM , reason = "GH 23440" )
215
215
@pytest .mark .parametrize (
216
216
"intervals" ,
217
217
[
You can’t perform that action at this time.
0 commit comments