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 afc8edd commit 2df96bbCopy full SHA for 2df96bb
pandas/compat/__init__.py
@@ -14,9 +14,18 @@
14
import sys
15
from typing import TYPE_CHECKING
16
17
+from pandas.compat._constants import (
18
+ IS64,
19
+ ISMUSL,
20
+ PY310,
21
+ PY311,
22
+ PY312,
23
+ PYPY,
24
+)
25
import pandas.compat.compressors
26
from pandas.compat.numpy import is_numpy_dev
27
from pandas.compat.pyarrow import (
28
+ HAS_PYARROW,
29
pa_version_under10p1,
30
pa_version_under11p0,
31
pa_version_under13p0,
@@ -186,4 +195,11 @@ def get_bz2_file() -> type[pandas.compat.compressors.BZ2File]:
186
195
"pa_version_under17p0",
187
196
"pa_version_under18p0",
188
197
"pa_version_under19p0",
198
+ "HAS_PYARROW",
199
+ "IS64",
200
+ "ISMUSL",
201
+ "PY310",
202
+ "PY311",
203
+ "PY312",
204
+ "PYPY",
189
205
]
0 commit comments