File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -48,8 +48,8 @@ Breaking changes
48
48
- Any user code that defines custom subclasses of xarray classes must now explicitly
49
49
define ``__slots__ `` itself. Subclasses that don't add any attributes must state so
50
50
by defining ``__slots__ = () `` right after the class header.
51
- Omitting ``__slots__ `` will now cause a ``FutureWarning `` to be logged, and a hard
52
- crash in a later release.
51
+ Omitting ``__slots__ `` will now cause a ``FutureWarning `` to be logged, and will raise an
52
+ error in a later release.
53
53
54
54
(:issue: `3250 `) by `Guido Imperiale <https://github.com/crusaderky >`_.
55
55
- :py:meth: `~Dataset.to_dataset ` requires ``name `` to be passed as a kwarg (previously ambiguous
Original file line number Diff line number Diff line change @@ -315,7 +315,7 @@ def __init__(
315
315
if encoding is not None :
316
316
warnings .warn (
317
317
"The `encoding` argument to `DataArray` is deprecated, and . "
318
- "will be removed in 0.13 . "
318
+ "will be removed in 0.14 . "
319
319
"Instead, specify the encoding when writing to disk or "
320
320
"set the `encoding` attribute directly." ,
321
321
FutureWarning ,
Original file line number Diff line number Diff line change @@ -489,7 +489,7 @@ def __init__(
489
489
if compat is not None :
490
490
warnings .warn (
491
491
"The `compat` argument to Dataset is deprecated and will be "
492
- "removed in 0.13 ."
492
+ "removed in 0.14 ."
493
493
"Instead, use `merge` to control how variables are combined" ,
494
494
FutureWarning ,
495
495
stacklevel = 2 ,
You can’t perform that action at this time.
0 commit comments