File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 21
21
PY311 ,
22
22
PY312 ,
23
23
PYPY ,
24
+ WASM ,
24
25
)
25
26
import pandas .compat .compressors
26
27
from pandas .compat .numpy import is_numpy_dev
@@ -192,4 +193,5 @@ def get_bz2_file() -> type[pandas.compat.compressors.BZ2File]:
192
193
"PY311" ,
193
194
"PY312" ,
194
195
"PYPY" ,
196
+ "WASM" ,
195
197
]
Original file line number Diff line number Diff line change 17
17
PY311 = sys .version_info >= (3 , 11 )
18
18
PY312 = sys .version_info >= (3 , 12 )
19
19
PYPY = platform .python_implementation () == "PyPy"
20
+ WASM = (sys .platform == "emscripten" ) or (platform .machine () in ["wasm32" , "wasm64" ])
20
21
ISMUSL = "musl" in (sysconfig .get_config_var ("HOST_GNU_TYPE" ) or "" )
21
22
REF_COUNT = 2 if PY311 else 3
22
23
27
28
"PY311" ,
28
29
"PY312" ,
29
30
"PYPY" ,
31
+ "WASM" ,
30
32
]
You can’t perform that action at this time.
0 commit comments