We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d11ae05 commit fe68cefCopy full SHA for fe68cef
pandas/conftest.py
@@ -2127,5 +2127,5 @@ def monkeysession():
2127
@pytest.fixture(params=[True, False])
2128
def pdep16_nan_behavior(request):
2129
opt = request.param
2130
- with pd.option_context("future.PDEP16_nan_behavior", opt):
+ with pd.option_context("future.numpy_nullable_nans_always_na", opt):
2131
yield opt
pandas/core/config_init.py
@@ -429,7 +429,7 @@ def is_terminal() -> bool:
429
430
with cf.config_prefix("future"):
431
cf.register_option(
432
- "PDEP16_nan_behavior",
+ "numpy_nullable_nans_always_na",
433
True,
434
# TODO: set the default to False before merging;
435
# True is just to find the tests that break with it enabled.
0 commit comments