Skip to content

Commit 2e39067

Browse files
add back PY314
1 parent b088f62 commit 2e39067

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

pandas/compat/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
IS64,
2020
ISMUSL,
2121
PY312,
22+
PY314,
2223
PYPY,
2324
WASM,
2425
)
@@ -155,6 +156,7 @@ def is_ci_environment() -> bool:
155156
"IS64",
156157
"ISMUSL",
157158
"PY312",
159+
"PY314",
158160
"PYPY",
159161
"WASM",
160162
"is_numpy_dev",

pandas/compat/_constants.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
IS64 = sys.maxsize > 2**32
1515

1616
PY312 = sys.version_info >= (3, 12)
17+
PY314 = sys.version_info >= (3, 14)
1718
PYPY = platform.python_implementation() == "PyPy"
1819
WASM = (sys.platform == "emscripten") or (platform.machine() in ["wasm32", "wasm64"])
1920
ISMUSL = "musl" in (sysconfig.get_config_var("HOST_GNU_TYPE") or "")
@@ -23,6 +24,7 @@
2324
"IS64",
2425
"ISMUSL",
2526
"PY312",
27+
"PY314",
2628
"PYPY",
2729
"WASM",
2830
]

0 commit comments

Comments
 (0)