Skip to content

Commit ff442af

Browse files
String dtype: turn on by default
1 parent 35b0d1d commit ff442af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/config_init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -880,7 +880,7 @@ def register_converter_cb(key: str) -> None:
880880
with cf.config_prefix("future"):
881881
cf.register_option(
882882
"infer_string",
883-
True if os.environ.get("PANDAS_FUTURE_INFER_STRING", "0") == "1" else False,
883+
True,
884884
"Whether to infer sequence of str objects as pyarrow string "
885885
"dtype, which will be the default in pandas 3.0 "
886886
"(at which point this option will be deprecated).",

0 commit comments

Comments
 (0)