Skip to content

Commit

Permalink
reverse condition
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke committed Dec 14, 2024
1 parent 5a6052b commit a866149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/compat/_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
PY313 = sys.version_info >= (3, 13)
PYPY = platform.python_implementation() == "PyPy"
WASM = (sys.platform == "emscripten") or (platform.machine() in ["wasm32", "wasm64"])
IS_FREE_THREADING = False if not PY313 else sys._is_gil_enabled() # type: ignore[attr-defined]
IS_FREE_THREADING = False if not PY313 else not sys._is_gil_enabled() # type: ignore[attr-defined]
ISMUSL = "musl" in (sysconfig.get_config_var("HOST_GNU_TYPE") or "")
REF_COUNT = 2 if PY311 else 3

Expand Down

0 comments on commit a866149

Please sign in to comment.