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 b088f62 commit 2e39067Copy full SHA for 2e39067
pandas/compat/__init__.py
@@ -19,6 +19,7 @@
19
IS64,
20
ISMUSL,
21
PY312,
22
+ PY314,
23
PYPY,
24
WASM,
25
)
@@ -155,6 +156,7 @@ def is_ci_environment() -> bool:
155
156
"IS64",
157
"ISMUSL",
158
"PY312",
159
+ "PY314",
160
"PYPY",
161
"WASM",
162
"is_numpy_dev",
pandas/compat/_constants.py
@@ -14,6 +14,7 @@
14
IS64 = sys.maxsize > 2**32
15
16
PY312 = sys.version_info >= (3, 12)
17
+PY314 = sys.version_info >= (3, 14)
18
PYPY = platform.python_implementation() == "PyPy"
WASM = (sys.platform == "emscripten") or (platform.machine() in ["wasm32", "wasm64"])
ISMUSL = "musl" in (sysconfig.get_config_var("HOST_GNU_TYPE") or "")
@@ -23,6 +24,7 @@
26
27
28
29
30
]
0 commit comments