Skip to content

Commit 9fbe353

Browse files
authored
auto_combine deprecation to 0.14 (#3314)
1 parent 99a5adc commit 9fbe353

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

xarray/backends/api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -915,7 +915,7 @@ def open_mfdataset(
915915
# Remove this after deprecation cycle from #2616 is complete
916916
basic_msg = dedent(
917917
"""\
918-
In xarray version 0.13 the default behaviour of `open_mfdataset`
918+
In xarray version 0.14 the default behaviour of `open_mfdataset`
919919
will change. To retain the existing behavior, pass
920920
combine='nested'. To use future default behavior, pass
921921
combine='by_coords'. See

xarray/core/combine.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ def auto_combine(
716716
if not from_openmfds:
717717
basic_msg = dedent(
718718
"""\
719-
In xarray version 0.13 `auto_combine` will be deprecated. See
719+
In xarray version 0.14 `auto_combine` will be deprecated. See
720720
http://xarray.pydata.org/en/stable/combining.html#combining-multi"""
721721
)
722722
warnings.warn(basic_msg, FutureWarning, stacklevel=2)
@@ -758,7 +758,7 @@ def auto_combine(
758758
message += dedent(
759759
"""\
760760
The datasets supplied require both concatenation and merging. From
761-
xarray version 0.13 this will operation will require either using the
761+
xarray version 0.14 this will operation will require either using the
762762
new `combine_nested` function (or the `combine='nested'` option to
763763
open_mfdataset), with a nested list structure such that you can combine
764764
along the dimensions {}. Alternatively if your datasets have global

xarray/tests/test_combine.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ def test_check_for_impossible_ordering(self):
714714

715715

716716
@pytest.mark.filterwarnings(
717-
"ignore:In xarray version 0.13 `auto_combine` " "will be deprecated"
717+
"ignore:In xarray version 0.14 `auto_combine` " "will be deprecated"
718718
)
719719
@pytest.mark.filterwarnings("ignore:Also `open_mfdataset` will no longer")
720720
@pytest.mark.filterwarnings("ignore:The datasets supplied")

0 commit comments

Comments
 (0)