Skip to content

Commit fe68cef

Browse files
committed
PDEP16_nan_behavior->numpy_nullable_nans_always_na
1 parent d11ae05 commit fe68cef

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("future.PDEP16_nan_behavior", opt):
2130+
with pd.option_context("future.numpy_nullable_nans_always_na", opt):
21312131
yield opt

pandas/core/config_init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ def is_terminal() -> bool:
429429

430430
with cf.config_prefix("future"):
431431
cf.register_option(
432-
"PDEP16_nan_behavior",
432+
"numpy_nullable_nans_always_na",
433433
True,
434434
# TODO: set the default to False before merging;
435435
# True is just to find the tests that break with it enabled.

0 commit comments

Comments
 (0)