Skip to content

Commit d11ae05

Browse files
committed
mode->future
1 parent 9f80a60 commit d11ae05

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2127,5 +2127,5 @@ def monkeysession():
21272127
@pytest.fixture(params=[True, False])
21282128
def pdep16_nan_behavior(request):
21292129
opt = request.param
2130-
with pd.option_context("mode.PDEP16_nan_behavior", opt):
2130+
with pd.option_context("future.PDEP16_nan_behavior", opt):
21312131
yield opt

pandas/core/config_init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ def is_terminal() -> bool:
427427
validator=is_one_of_factory([True, False, "warn"]),
428428
)
429429

430-
with cf.config_prefix("mode"):
430+
with cf.config_prefix("future"):
431431
cf.register_option(
432432
"PDEP16_nan_behavior",
433433
True,

0 commit comments

Comments
 (0)